Sha256: c13f224a66cf43506c4cacf4ba3cf0ea489ebbca9c945e7c9a00583300d8458e

Contents?: true

Size: 1.13 KB

Versions: 2

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

2 entries across 2 versions & 1 rubygems

Version Path
spree_core-0.70.0.rc2 app/views/admin/zones/index.html.erb
spree_core-0.70.RC1 app/views/admin/zones/index.html.erb