Originally, the code was shared between the index action and the search
action, but since commit fb6dbdf2 that's no longer the case. So in the
index action we don't need to check whether a user is a
moderator/manager/admin/official or not; they all are.
45 lines
1.4 KiB
Plaintext
45 lines
1.4 KiB
Plaintext
<h2><%= t("admin.officials.index.title") %></h2>
|
|
<p><%= t("admin.officials.index.help") %></p>
|
|
|
|
<%= render "admin/shared/user_search", url: search_admin_officials_path %>
|
|
|
|
<% if @officials.any? %>
|
|
<h3 class="margin"><%= page_entries_info @officials %></h3>
|
|
|
|
<table>
|
|
<thead>
|
|
<th scope="col"><%= t("admin.officials.index.name") %></th>
|
|
<th scope="col"><%= t("admin.officials.index.official_position") %></th>
|
|
<th scope="col"><%= t("admin.officials.index.official_level") %></th>
|
|
<th scope="col" class="small-3"><%= t("admin.shared.actions") %></th>
|
|
</thead>
|
|
<tbody>
|
|
<% @officials.each do |official| %>
|
|
<tr>
|
|
<td>
|
|
<%= link_to official.name, edit_admin_official_path(official) %>
|
|
</td>
|
|
<td>
|
|
<span class="label level-<%= official.official_level %>">
|
|
<%= official.official_position %>
|
|
</span>
|
|
</td>
|
|
<td>
|
|
<%= t("admin.officials.level_#{official.official_level}") %>
|
|
</td>
|
|
<td>
|
|
<%= link_to t("admin.officials.search.edit_official"),
|
|
edit_admin_official_path(official), class: "button hollow expanded" %>
|
|
</td>
|
|
</tr>
|
|
<% end %>
|
|
</tbody>
|
|
</table>
|
|
|
|
<%= paginate @officials %>
|
|
<% else %>
|
|
<div class="callout primary">
|
|
<%= t("admin.officials.index.no_officials") %>
|
|
</div>
|
|
<% end %>
|