You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@whimsical.apache.org by se...@apache.org on 2021/08/16 12:00:00 UTC

[whimsy] branch master updated: Show PMC size

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 827a35b  Show PMC size
827a35b is described below

commit 827a35b5f10acc1b76dd5d0932d340495bc34947
Author: Sebb <se...@apache.org>
AuthorDate: Mon Aug 16 12:59:54 2021 +0100

    Show PMC size
    
    [The data was already present]
---
 www/roster/views/committees.html.rb | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/www/roster/views/committees.html.rb b/www/roster/views/committees.html.rb
index 6f0dc88..5443043 100644
--- a/www/roster/views/committees.html.rb
+++ b/www/roster/views/committees.html.rb
@@ -50,6 +50,7 @@ _html do
           _th.sorting_asc 'Name', data_sort: 'string-ins'
           _th 'Chair(s)', data_sort: 'string'
           _th 'Established', data_sort: 'string'
+          _th 'PMC Size', data_sort: 'int'
           _th 'Description', data_sort: 'string'
         end
       end
@@ -82,6 +83,7 @@ _html do
 
             if not pmc.established
               _td ''
+              _ td ''
               _td.issue 'Not in committee-info.txt'
             else
               if pmc.established =~ /^(\d\d)\/(\d{4})(.*)$/
@@ -90,6 +92,7 @@ _html do
                 est = pmc.established
               end
               _td est
+              _td pmc.roster.size
               _td pmc.description
             end
           end