Sha256: 9a96082b303dd94317db3a0b5a5929f0028f3e64f248b62b455b2880f3a0edb2
Contents?: true
Size: 1.57 KB
Versions: 19
Compression:
Stored size: 1.57 KB
Contents
<% content_for :page_title do %> <%= Spree.t(:zones) %> <% end %> <% content_for :page_actions do %> <%= button_link_to Spree.t(:new_zone), new_object_url, :class => "btn-success", :icon => 'add', :id => 'admin_new_zone_link' %> <% end if can? :create, Spree::Zone %> <%= paginate @zones %> <% if @zones.any? %> <table class="table" id='listing_zones' data-hook> <thead> <tr data-hook="zones_header"> <th><%= sort_link @search,:name, Spree.t(:name), :title => 'zones_order_by_name_title' %></th> <th> <%= sort_link @search,:description, Spree.t(:description), {}, {:title => 'zones_order_by_description_title'} %> </th> <th><%= Spree.t(:default_tax_zone) %></th> <th class="actions"></th> </tr> </thead> <tbody> <% @zones.each do |zone| %> <tr id="<%= spree_dom_id zone %>" data-hook="zones_row"> <td><%= zone.name %></td> <td><%= zone.description %></td> <td><%= zone.default_tax? ? Spree.t(:say_yes) : Spree.t(:say_no) %></td> <td class="actions actions-2 text-right"> <%= link_to_edit(zone, :no_text => true) if can? :edit, zone %> <%= link_to_delete(zone, :no_text => true) if can? :delete, zone %> </td> </tr> <% end %> </tbody> </table> <% else %> <div class="alert alert-info no-objects-found"> <%= Spree.t(:no_resource_found, resource: plural_resource_name(Spree::Zone)) %>, <%= link_to(Spree.t(:add_one), new_object_url) if can? :create, Spree::Zone %>! </div> <% end %> <%= paginate @zones %>
Version data entries
19 entries across 19 versions & 1 rubygems