Sha256: 7977c90286ff7a3a2f547e008fb699db9ea0195895c4b8b192341a35ebc2ec9d

Contents?: true

Size: 1.01 KB

Versions: 17

Compression:

Stored size: 1.01 KB

Contents

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

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


<h1><%= t("zones") %></h1>
<table class="index">
  <thead>
    <tr>
      <th><%= order @search, :by => :name,        :as => t("name") %></th>
      <th><%= order @search, :by => :description, :as => t("description") %></th>
      <th></th>
    </tr>
  </thead>
  <tbody>
    <% @collection.each do |zone| %>
      <tr id="<%= dom_id zone %>">
        <td><%=zone.name %></td>
        <td><%=zone.description %></td>
        <td class="actions">
          <%=link_to_edit zone %> &nbsp; 
          <%=link_to_delete zone %>
        </td>
      </tr>
    <% end %>
    <% if @collection.empty? %>
      <tr><td colspan="2"><%= t(:none) %></td></tr>
    <% end %>
  </tbody>
</table>

<%= will_paginate(:previous_label => "&#171; #{t('previous')}", :next_label => "#{t('next')} &#187;") %>

Version data entries

17 entries across 17 versions & 2 rubygems

Version Path
spree-0.11.4 vendor/extensions/theme_default/app/views/admin/zones/index.html.erb
spree-0.11.3 vendor/extensions/theme_default/app/views/admin/zones/index.html.erb
spree_core-0.30.2 app/views/admin/zones/index.html.erb
spree_core-0.40.4 app/views/admin/zones/index.html.erb
spree_core-0.40.3 app/views/admin/zones/index.html.erb
spree_core-0.40.2 app/views/admin/zones/index.html.erb
spree_core-0.40.1 app/views/admin/zones/index.html.erb
spree_core-0.40.0 app/views/admin/zones/index.html.erb
spree_core-0.30.1 app/views/admin/zones/index.html.erb
spree_core-0.30.0 app/views/admin/zones/index.html.erb
spree-0.11.2 vendor/extensions/theme_default/app/views/admin/zones/index.html.erb
spree-0.11.1 vendor/extensions/theme_default/app/views/admin/zones/index.html.erb
spree_core-0.30.0.beta1 app/views/admin/zones/index.html.erb
spree-0.11.0 vendor/extensions/theme_default/app/views/admin/zones/index.html.erb
spree-0.10.2 vendor/extensions/theme_default/app/views/admin/zones/index.html.erb
spree-0.10.1 vendor/extensions/theme_default/app/views/admin/zones/index.html.erb
spree-0.10.0 vendor/extensions/theme_default/app/views/admin/zones/index.html.erb