35 lines
1007 B
Plaintext
35 lines
1007 B
Plaintext
<h3><%= t("admin.polls.show.booths_title") %></h3>
|
|
|
|
<% if @poll.booths.empty? %>
|
|
<div class="callout primary margin-top">
|
|
<%= t("admin.polls.show.no_booths") %>
|
|
</div>
|
|
<% else %>
|
|
<table>
|
|
<thead>
|
|
<th><%= t("admin.polls.show.name") %></th>
|
|
<th><%= t("admin.polls.show.location") %></th>
|
|
<th> </th>
|
|
</thead>
|
|
<tbody>
|
|
<% @poll.booths.each do |booth| %>
|
|
<tr id="booth_<%= booth.id %>" class="booth">
|
|
<td>
|
|
<strong>
|
|
<%= link_to booth.name, admin_booth_path(booth) %>
|
|
</strong>
|
|
</td>
|
|
<td>
|
|
<%= booth.location %>
|
|
</td>
|
|
<td class="text-right">
|
|
<%= link_to t("admin.polls.show.remove_booth"),
|
|
admin_booth_assignment_path(poll: @poll, booth: booth),
|
|
method: :delete,
|
|
class: "button hollow alert" %>
|
|
</td>
|
|
</tr>
|
|
<% end %>
|
|
</tbody>
|
|
</table>
|
|
<% end %> |