diff options
Diffstat (limited to 'app/views/users')
| -rw-r--r-- | app/views/users/index.html.erb | 20 |
1 files changed, 11 insertions, 9 deletions
diff --git a/app/views/users/index.html.erb b/app/views/users/index.html.erb index 71102c2c..e6c1fbda 100644 --- a/app/views/users/index.html.erb +++ b/app/views/users/index.html.erb | |||
| @@ -13,15 +13,17 @@ | |||
| 13 | <span class="dashboard_widget_meta"><%= members.size %></span> | 13 | <span class="dashboard_widget_meta"><%= members.size %></span> |
| 14 | </h2> | 14 | </h2> |
| 15 | <% if members.any? %> | 15 | <% if members.any? %> |
| 16 | <table class="user_table <%= "user_table_alumni" if group == :alumni %>"> | 16 | <table class="admin_table user_table <%= "user_table_alumni" if group == :alumni %>"> |
| 17 | <tr class="header"> | 17 | <thead> |
| 18 | <th><%= t("users.labels.login") %></th> | 18 | <tr class="header"> |
| 19 | <th><%= t("users.labels.roles") %></th> | 19 | <th><%= t("users.labels.login") %></th> |
| 20 | <th></th> | 20 | <th><%= t("users.labels.roles") %></th> |
| 21 | <th></th> | 21 | <th></th> |
| 22 | <th></th> | 22 | </tr> |
| 23 | </tr> | 23 | </thead> |
| 24 | <%= render :partial => "user", :locals => { :users => members } %> | 24 | <tbody> |
| 25 | <%= render :partial => "user", :locals => { :users => members } %> | ||
| 26 | </tbody> | ||
| 25 | </table> | 27 | </table> |
| 26 | <% else %> | 28 | <% else %> |
| 27 | <p class="field_hint"><%= t(".group_empty") %></p> | 29 | <p class="field_hint"><%= t(".group_empty") %></p> |
