Commit 6ccff4299ad8662155a76f01480d4bf3eb236214

Authored by Leandro Santos
1 parent 2afa1f75

display email in user list

Showing 1 changed file with 2 additions and 0 deletions   Show diff stats
app/views/users/_users_list.html.erb
@@ -11,11 +11,13 @@ @@ -11,11 +11,13 @@
11 </colgroup> 11 </colgroup>
12 <tr> 12 <tr>
13 <th><%= _('Member') %></th> 13 <th><%= _('Member') %></th>
  14 + <th><%= _('Email') %></th>
14 <th><%= _('Actions') %></th> 15 <th><%= _('Actions') %></th>
15 </tr> 16 </tr>
16 <% @collection.each do |p| %> 17 <% @collection.each do |p| %>
17 <tr title="<%= p.name %>"> 18 <tr title="<%= p.name %>">
18 <td><%= link_to_profile p.short_name, p.identifier, :title => p.name %> </td> 19 <td><%= link_to_profile p.short_name, p.identifier, :title => p.name %> </td>
  20 + <td><%= link_to_profile p.email, p.identifier, :title => p.email %> </td>
19 <td class='actions'> 21 <td class='actions'>
20 <div class="members-buttons-cell"> 22 <div class="members-buttons-cell">
21 <% if p.is_admin? %> 23 <% if p.is_admin? %>