Board member changes to registration forms and reports

This commit is contained in:
2016-02-11 20:27:28 -07:00
parent f19e822d88
commit 2cd1966250
4 changed files with 10 additions and 6 deletions

View File

@@ -17,7 +17,7 @@
<% end %>
<div class="field">
<%= f.label :name, "Full Name" %><br />
<%= f.label :name, "Full Name (this will be public)" %><br />
<%= f.text_field :name %>
</div>
<div class="field">

View File

@@ -3,7 +3,8 @@
<% @new_users.sort_by(&:created_at).reverse!.group_by{|u| u.created_at.beginning_of_month}.each do |g| %>
<h2><%= g.first.to_formatted_s(:month_and_year) %></h2>
<% g.last.each do |user| %>
<p><b><%= user.name %> - <%= user.member_level_string %></b></p>
<!-- remove member level from display -->
<p><b><%= user.name %><!-- - <%= user.member_level_string %>--></b></p>
<p><b>What skills, knowledge and experience do you bring to the community?</b><br/>
<%= user.current_skills %>
</p>