Sha256: 523cf35dd02354c67a94780a079c6bd2c24b10455055d3454079241e79146ecb

Contents?: true

Size: 1.56 KB

Versions: 6

Compression:

Stored size: 1.56 KB

Contents

<%= render 'spree/admin/shared/areas_tabs' %>

<% content_for :page_title do %>
  <%= Spree.t(:listing_countries) %>
<% end %>

<% content_for :page_actions do %>
  <ul class="actions inline-menu">
    <% if can?(:create, Spree::Country) %>
      <li>
        <%= button_link_to Spree.t(:new_country), new_object_url, { :icon => 'plus', :id => 'admin_new_country' } %>
      </li>
    <% end %>
  </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::Country.human_attribute_name(:name) %></th>
      <th><%= Spree::Country.human_attribute_name(:iso_name) %></th>
      <th><%= Spree::Country.human_attribute_name(: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">
          <% if can?(:edit, country) %>
            <%= link_to_edit country, :no_text => true %>
          <% end %>
          <% if can?(:destroy, country) %>
            <%= link_to_delete country, :no_text => true %>
          <% end %>
        </td>
      </tr>
    <% end %>
  </tbody>
</table>

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
solidus_backend-1.3.2 app/views/spree/admin/countries/index.html.erb
solidus_backend-1.3.1 app/views/spree/admin/countries/index.html.erb
solidus_backend-1.3.0 app/views/spree/admin/countries/index.html.erb
solidus_backend-1.3.0.rc2 app/views/spree/admin/countries/index.html.erb
solidus_backend-1.3.0.rc1 app/views/spree/admin/countries/index.html.erb
solidus_backend-1.3.0.beta1 app/views/spree/admin/countries/index.html.erb