Sha256: 61d262c6858b56eeb93c20842599d2304a7c6e442646e3a7529668d7884c183f
Contents?: true
Size: 1.48 KB
Versions: 4
Compression:
Stored size: 1.48 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-primary", icon: 'add.svg', id: 'admin_new_country' } %> <% end if can? :create, Spree::Country %> <div class="table-responsive border rounded bg-white"> <table class="table" id='listing_countries' data-hook> <thead class="text-muted"> <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
4 entries across 4 versions & 1 rubygems