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 0c7f402b Who nominated
0c7f402b is described below
commit 0c7f402bd8a2b0e85b6325fd0a6c31ef6578d6b3
Author: Sebb <[email protected]>
AuthorDate: Tue Mar 28 15:30:13 2023 +0100
Who nominated
---
www/members/invitations.cgi | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/www/members/invitations.cgi b/www/members/invitations.cgi
index 676ea856..994d9c78 100755
--- a/www/members/invitations.cgi
+++ b/www/members/invitations.cgi
@@ -89,7 +89,7 @@ _html do
.count {margin-left: 4em}
}
_body? do
- notinvited, memappfile, _, _, _, notapplied = setup_data
+ notinvited, memappfile, _, _, nominated_by, notapplied = setup_data
memappurl = ASF::SVN.getInfoItem(memappfile, 'url')
nominationsurl = memappurl.sub('memapp-received.txt',
'nominated-members.txt')
_whimsy_body(
@@ -136,6 +136,7 @@ _html do
_th 'karma?'
_th 'id'
_th 'name'
+ _th 'Nominators'
end
notapplied.each do |entry|
@@ -148,6 +149,7 @@ _html do
_td d
_td e
_td f
+ _td (nominated_by[e] || 'unknown').join(' ')
end
end
end