Sha256: 6a2f9cdaf0e7bf6fe4335253258f1ee021dc1821922ea5921dbb06685172065a

Contents?: true

Size: 1.13 KB

Versions: 8

Compression:

Stored size: 1.13 KB

Contents

<%= render :partial => 'admin/shared/configuration_menu' %>

<div class="toolbar" data-hook="toolbar">
  <ul class="actions">
    <li>
      <%= button_link_to t(:new_zone), new_object_url, :icon => 'add', :id => 'admin_new_zone_link' %>
    </li>
  </ul>
  <br class="clear" />
</div>


<h1><%= t(:zones) %></h1>
<table class="index" id='listing_zones' data-hook>
  <thead>
    <tr data-hook="zones_header">
      <th><%= sort_link @search,:name, t(:name), :title => 'zones_order_by_name_title' %></th>
      <th>
        <%= sort_link @search,:description, t(:description), {}, {:title => 'zones_order_by_description_title'} %>
      </th>
      <th></th>
    </tr>
  </thead>
  <tbody>
    <% @zones.each do |zone| %>
      <tr id="<%= dom_id zone %>" data-hook="zones_row">
        <td><%=zone.name %></td>
        <td><%=zone.description %></td>
        <td class="actions">
          <%=link_to_edit zone %> &nbsp;
          <%=link_to_delete zone %>
        </td>
      </tr>
    <% end %>
    <% if @zones.empty? %>
      <tr data-hook="zones_none"><td colspan="2"><%= t(:none) %></td></tr>
    <% end %>
  </tbody>
</table>
<%= paginate @zones %>

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
spree_core-0.70.7 app/views/admin/zones/index.html.erb
spree_core-0.70.6 app/views/admin/zones/index.html.erb
spree_core-0.70.5 app/views/admin/zones/index.html.erb
spree_core-0.70.4 app/views/admin/zones/index.html.erb
spree_core-0.70.3 app/views/admin/zones/index.html.erb
spree_core-0.70.2 app/views/admin/zones/index.html.erb
spree_core-0.70.1 app/views/admin/zones/index.html.erb
spree_core-0.70.0 app/views/admin/zones/index.html.erb