Sha256: 61d3c612ceae672d9e40682bdb36212ac9932d8c6e5aaa3c49f9cc812d9133dc
Contents?: true
Size: 1.31 KB
Versions: 13
Compression:
Stored size: 1.31 KB
Contents
<%= render 'spree/admin/shared/configuration_menu' %> <% content_for :page_title do %> <%= Spree.t(:listing_countries) %> <% end %> <% content_for :page_actions do %> <ul class="actions inline-menu"> <li> <%= button_link_to Spree.t(:new_country), new_object_url, { :icon => 'icon-plus', :id => 'admin_new_country' } %> </li> </ul> <% end %> <table class="index" id='listing_countries' data-hook> <colgroup> <col style="width: 35%" /> <col style="width: 35%" /> <col style="width: 20%" /> <col style="width: 10%" /> </colgroup> <thead> <tr data-hook="tax_header"> <th><%= Spree.t(:country_name) %></th> <th><%= Spree.t(:iso_name) %></th> <th><%= Spree.t(:states_required) %></th> <th class="actions"></th> </tr> </thead> <tbody> <% @countries.each do |country| %> <tr id="<%= spree_dom_id country %>" data-hook="country_row" class="<%= cycle('odd', 'even')%>"> <td><%= country.name %></td> <td><%= country.iso_name %></td> <td class="align-center"><%= country.states_required? ? Spree.t(:say_yes) : Spree.t(:say_no) %></td> <td class="actions"> <%= link_to_edit country, :no_text => true %> <%= link_to_delete country, :no_text => true %> </td> </tr> <% end %> </tbody> </table>
Version data entries
13 entries across 13 versions & 1 rubygems