<%= t("admin.booths.index.title") %>
<% if controller_name == "booths" && action_name != "available" %>
<%= link_to t("admin.booths.index.add_booth"), new_admin_booth_path, class: "button float-right" %>
<% end %>
<%= render "/admin/shared/booth_search", url: admin_booths_path %>
<% if @booths.empty? %>
<%= t("admin.booths.index.no_booths") %>
<% end %>
<% if @booths.any? %>
<%= page_entries_info @booths %>
| <%= t("admin.booths.index.name") %> |
<%= t("admin.booths.index.location") %> |
<%= t("admin.actions.actions") %> |
<% @booths.each do |booth| %>
<%= render "booth", booth: booth %>
<% end %>
<%= paginate @booths %>
<% end %>