Commit 103ec9c4ae3c642b27c23f35762abe81661cc17e:
add member info
Branch: refs/heads/master
Author: Sam Ruby <[email protected]>
Committer: Sam Ruby <[email protected]>
Pusher: rubys <[email protected]>
------------------------------------------------------------
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