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 </colgroup>
12 12 <tr>
13 13 <th><%= _('Member') %></th>
  14 + <th><%= _('Email') %></th>
14 15 <th><%= _('Actions') %></th>
15 16 </tr>
16 17 <% @collection.each do |p| %>
17 18 <tr title="<%= p.name %>">
18 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 21 <td class='actions'>
20 22 <div class="members-buttons-cell">
21 23 <% if p.is_admin? %>
... ...