43 lines
1.1 KiB
Plaintext
43 lines
1.1 KiB
Plaintext
<h2><%= t("admin.valuators.index.title") %></h2>
|
|
|
|
<%= render 'admin/shared/user_search', url: search_admin_valuators_path %>
|
|
|
|
<div id="valuators">
|
|
<% if @valuators.any? %>
|
|
<h3 class="margin"><%= page_entries_info @valuators %></h3>
|
|
|
|
<table>
|
|
<thead>
|
|
<th scope="col"><%= t("admin.valuators.index.name") %></th>
|
|
<th scope="col"><%= t("admin.valuators.index.email") %></th>
|
|
<th scope="col"><%= t("admin.valuators.index.description") %></th>
|
|
</thead>
|
|
<tbody>
|
|
<% @valuators.each do |valuator| %>
|
|
<tr>
|
|
<td>
|
|
<%= valuator.name %>
|
|
</td>
|
|
<td>
|
|
<%= valuator.email %>
|
|
</td>
|
|
<td>
|
|
<% if valuator.description.present? %>
|
|
<%= valuator.description %>
|
|
<% else %>
|
|
<%= t("admin.valuators.index.no_description") %>
|
|
<% end %>
|
|
</td>
|
|
</tr>
|
|
<% end %>
|
|
</tbody>
|
|
</table>
|
|
|
|
<%= paginate @valuators %>
|
|
<% else %>
|
|
<div class="callout primary">
|
|
<%= t("admin.valuators.index.no_valuators") %>
|
|
</div>
|
|
<% end %>
|
|
</div>
|