37 lines
945 B
Plaintext
37 lines
945 B
Plaintext
<% if @officers.blank? %>
|
|
<div class="callout alert margin-bottom">
|
|
<%= t('admin.shared.no_search_results') %>
|
|
</div>
|
|
<% else %>
|
|
<h3><%= t('admin.shared.search_results') %></h3>
|
|
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<th><%= t("admin.poll_shifts.new.table_name") %></th>
|
|
<th><%= t("admin.poll_shifts.new.table_email") %></th>
|
|
<th class="text-right">
|
|
<%= t("admin.poll_shifts.new.table_shift") %>
|
|
</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<% @officers.each do |user| %>
|
|
<tr>
|
|
<td>
|
|
<%= user.name %>
|
|
</td>
|
|
<td>
|
|
<%= user.email %>
|
|
</td>
|
|
<td class="text-right">
|
|
<%= link_to t("admin.poll_shifts.new.edit_shifts"),
|
|
new_admin_booth_shift_path(officer_id: user.poll_officer.id),
|
|
class: "button hollow" %>
|
|
</td>
|
|
</tr>
|
|
<% end %>
|
|
</tbody>
|
|
</table>
|
|
<% end %>
|