<%= t("admin.booths.index.title") %>

<%= link_to t("admin.booths.index.add_booth"), new_admin_booth_path, class: "button success float-right" %> <% if @booths.empty? %>
<%= t("admin.booths.index.no_booths") %>
<% end %> <% if @booths.any? %>

<%= page_entries_info @booths %>

<% @booths.each do |booth| %> <%= render partial: "booth", locals: { booth: booth } %> <% end %>
<%= t("admin.booths.index.name") %> <%= t("admin.booths.index.location") %>  
<%= paginate @booths %> <% end %>