Files
grecia/app/views/admin/poll/booths/index.html.erb
2016-12-02 14:33:40 +01:00

30 lines
702 B
Plaintext

<h2><%= t("admin.booths.index.title") %></h2>
<% if @booths.empty? %>
<div class="callout primary">
<%= t("admin.booths.index.no_booths") %>
</div>
<% end %>
<%= link_to t("admin.booths.index.add_booth"),
new_admin_booth_path,
class: "button success" %>
<% if @booths.any? %>
<h3><%= page_entries_info @booths %></h3>
<table>
<thead>
<th><%= t("admin.booths.index.name") %></th>
<th><%= t("admin.booths.index.location") %></th>
<th>&nbsp;</th>
</thead>
<tbody>
<% @booths.each do |booth| %>
<%= render partial: "booth", locals: { booth: booth } %>
<% end %>
</tbody>
</table>
<%= paginate @booths %>
<% end %>