Sha256: a72c52327129ecba783ef9f6cdf91e214ab3d3b817979935dfec5235ec6f9fea
Contents?: true
Size: 1.44 KB
Versions: 11
Compression:
Stored size: 1.44 KB
Contents
<% content_for :page_title do %> <%= plural_resource_name(Spree::Country) %> <% end %> <% content_for :page_actions do %> <%= button_link_to Spree.t(:new_country), new_object_url, { class: "btn-success", icon: 'add.svg', id: 'admin_new_country' } %> <% end if can? :create, Spree::Country %> <div class="table-responsive"> <table class="table" id='listing_countries' data-hook> <thead> <tr data-hook="tax_header"> <th><%= Spree.t(:country_name) %></th> <th class="text-center"><%= Spree.t(:iso3) %></th> <th class="text-center"><%= Spree.t(:states_required) %></th> <th class="text-center"><%= Spree.t(:zipcode_required) %></th> <th class="actions"></th> </tr> </thead> <tbody> <% @countries.each do |country| %> <tr id="<%= spree_dom_id country %>" data-hook="country_row"> <td><%= country.name %></td> <td class="text-center"><%= country.iso3 %></td> <td class="text-center"><%= active_badge(country.states_required?) %></td> <td class="text-center"><%= active_badge(country.zipcode_required?) %></td> <td class="actions"> <span class="d-flex justify-content-end"> <%= link_to_edit(country, no_text: true) if can? :edit, country %> <%= link_to_delete(country, no_text: true) if can? :delete, country %> </span> </td> </tr> <% end %> </tbody> </table> </div>
Version data entries
11 entries across 11 versions & 1 rubygems