Sha256: 180685cb17962937cace25b6a9bd874cc6f142eebd8697421c90a2b182e79af2

Contents?: true

Size: 1005 Bytes

Versions: 14

Compression:

Stored size: 1005 Bytes

Contents

<%= render :partial => 'admin/shared/configuration_menu' %>

<div class='toolbar'>
  <ul class='actions'>
    <li>
      <p><%= button_link_to t("new_tax_category"), new_object_url, :icon => 'add' %></p>
    </li>
  </ul>
  <br class='clear' />
</div>


<h1><%=t("listing_tax_categories")%></h1>
<table class="index">
  <thead>
    <tr>
      <th><%= t("name") %></th>
      <th><%= t("description") %></th>
      <th><%= t("default") %></th>
      <th></th>
    </tr>
  </thead>
  <tbody>
    <% @tax_categories.each do |tax_category|%>
      <tr id="<%= dom_id tax_category %>">
        <td><%= tax_category.name %></td>
        <td><%= tax_category.description %></td>
        <td><%= tax_category.is_default.to_s.titleize %></td>
        <td class="actions">
          <%=link_to_edit tax_category %> &nbsp;
          <%=link_to_delete tax_category %>
      </tr>
    <% end %>
    <% if @tax_categories.empty? %>
      <tr><td colspan="3"><%= t(:none) %></td></tr>
    <% end %>
  </tbody>
</table>

Version data entries

14 entries across 14 versions & 2 rubygems

Version Path
spree-0.11.4 vendor/extensions/theme_default/app/views/admin/tax_categories/index.html.erb
spree-0.11.3 vendor/extensions/theme_default/app/views/admin/tax_categories/index.html.erb
spree_core-0.30.2 app/views/admin/tax_categories/index.html.erb
spree_core-0.40.4 app/views/admin/tax_categories/index.html.erb
spree_core-0.40.3 app/views/admin/tax_categories/index.html.erb
spree_core-0.40.2 app/views/admin/tax_categories/index.html.erb
spree_core-0.40.1 app/views/admin/tax_categories/index.html.erb
spree_core-0.40.0 app/views/admin/tax_categories/index.html.erb
spree_core-0.30.1 app/views/admin/tax_categories/index.html.erb
spree_core-0.30.0 app/views/admin/tax_categories/index.html.erb
spree-0.11.2 vendor/extensions/theme_default/app/views/admin/tax_categories/index.html.erb
spree-0.11.1 vendor/extensions/theme_default/app/views/admin/tax_categories/index.html.erb
spree_core-0.30.0.beta1 app/views/admin/tax_categories/index.html.erb
spree-0.11.0 vendor/extensions/theme_default/app/views/admin/tax_categories/index.html.erb