You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@whimsical.apache.org by Sam Ruby <ru...@apache.org> on 2016/02/24 16:15:42 UTC

[whimsy.git] [1/1] Commit 103ec9c: add member info

Commit 103ec9c4ae3c642b27c23f35762abe81661cc17e:
    add member info


Branch: refs/heads/master
Author: Sam Ruby <ru...@intertwingly.net>
Committer: Sam Ruby <ru...@intertwingly.net>
Pusher: rubys <ru...@apache.org>

------------------------------------------------------------
www/roster/views/committer.js.rb                             | ++++++++++++ 
------------------------------------------------------------
23 changes: 23 additions, 0 deletions.
------------------------------------------------------------


diff --git a/www/roster/views/committer.js.rb b/www/roster/views/committer.js.rb
index 21ebfd5..74ddb68 100644
--- a/www/roster/views/committer.js.rb
+++ b/www/roster/views/committer.js.rb
@@ -56,6 +56,29 @@ def render
           end
         end
       end
+
+      if @@committer.member
+        if @@committer.member.status
+          _tr do
+            _td 'Member status'
+            _td @@committer.member.status
+          end
+        end
+
+        if @@committer.member.info
+          _tr do
+            _td 'Members.txt'
+            _td {_pre @@committer.member.info}
+          end
+        end
+
+        if @@committer.member.nomination
+          _tr do
+            _td 'nomination'
+            _td {_pre @@committer.member.nomination}
+          end
+        end
+      end
     end
   end
 end