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 1c2a76e2 Add website link
1c2a76e2 is described below
commit 1c2a76e2aa28a781e7fafda572b8bcc453d5712c
Author: Sebb <[email protected]>
AuthorDate: Mon Sep 18 15:45:38 2023 +0100
Add website link
---
www/roster/views/nonpmcs.html.rb | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/www/roster/views/nonpmcs.html.rb b/www/roster/views/nonpmcs.html.rb
index e3fb0926..3da81407 100644
--- a/www/roster/views/nonpmcs.html.rb
+++ b/www/roster/views/nonpmcs.html.rb
@@ -28,6 +28,7 @@ _html do
_thead do
_tr do
_th.sorting_asc 'Name', data_sort: 'string-ins'
+ _th 'Website'
_th 'Chair(s)', data_sort: 'string'
_th 'Description', data_sort: 'string'
end
@@ -39,6 +40,9 @@ _html do
_a pmc.display_name, href: "nonpmc/#{pmc.name}"
end
+ _td do
+ _a pmc.site, href: pmc.site
+ end
_td do
pmc.chairs.each_with_index do |chair, index|
_span ', ' unless index == 0