<%= t('places.title') %>

<%= link_to t('places.new_place'), new_admin_place_path, class: 'btn btn-success' %>

<%= notice %>

<% @places.each do |place| %> <% end %>
<%= t('activerecord.attributes.place.name') %> <%= t('activerecord.attributes.place.company') %> <%= t('tables.actions') %>
<%= place.name %> <%= place.company %> <%= link_to t('actions.show'), admin_place_path(place) %> <%= link_to t('actions.edit'), edit_admin_place_path(place) %> <%= link_to t('actions.destroy'), admin_place_path(place), method: :delete, data: {confirm: t('tables.confirm')} %>