<%= t('plugin.store_locator.table.store_name') %> |
<%= t('plugin.store_locator.table.address') %> |
<%= t('plugin.store_locator.table.latitude') %> |
<%= t('plugin.store_locator.table.longitude') %> |
<%= t('plugin.store_locator.table.zipcode') %> |
<%= t('camaleon_cms.admin.table.actions')%> |
<%
@stores.each do |store|
%>
<%= store.store_name %> |
<%= store.address %> |
<%= store.latitude %> |
<%= store.longitude %> |
<%= store.zipcode %> |
<%= link_to raw(''), {action: :edit, id: store.id }, class: "btn btn-default btn-xs", title: "#{t('camaleon_cms.admin.button.edit')}" %>
|
<% end %>
<%= content_tag("div", raw(t('camaleon_cms.admin.message.data_found_list')), class: "alert alert-warning") if @stores.empty? %>
<%= will_paginate @stores, renderer: BootstrapPagination::Rails %>