This is an automated email from the ASF dual-hosted git repository.
sebb pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/whimsy.git
The following commit(s) were added to refs/heads/master by this push:
new 54839db1 Flag invited but not marked as such
54839db1 is described below
commit 54839db14606e25efd9c721e6d7271292153b340
Author: Sebb <[email protected]>
AuthorDate: Sat Mar 9 13:41:09 2024 +0000
Flag invited but not marked as such
---
www/members/invitations.cgi | 16 ++++++++++++++--
1 file changed, 14 insertions(+), 2 deletions(-)
diff --git a/www/members/invitations.cgi b/www/members/invitations.cgi
index e4f80427..1eb023c0 100755
--- a/www/members/invitations.cgi
+++ b/www/members/invitations.cgi
@@ -106,6 +106,10 @@ _html do
) do
_h1 'Nominations listed as not yet invited in memapp-received.txt'
+ _p do
+ _ 'If an invite or reply has been seen, the relevant table cell is'
+ _span.missing 'flagged'
+ end
_table.table.table_striped do
_tr do
_th 'id'
@@ -119,8 +123,16 @@ _html do
_tr_ do
_td id
_td v[:name]
- _td v[:invited]
- _td v[:replied]
+ if v[:invited]
+ _td.missing v[:invited]
+ else
+ _td v[:invited]
+ end
+ if v[:replied]
+ _td.missing v[:replied]
+ else
+ _td v[:replied]
+ end
_td v[:nominators].join(', ')
end
end