Sha256: ab38ee085c884743d336ae62150319360ee9ce3c90abcdbc1550c40854c548f1

Contents?: true

Size: 868 Bytes

Versions: 7

Compression:

Stored size: 868 Bytes

Contents

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

<div class='toolbar'>
  <ul class='actions'>
    <li>
      <%= 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></th>
    </tr>
  </thead>
  <tbody>
    <% @tax_categories.each do |tax_category|%>
      <tr>
        <td><%= tax_category.name %></td>
        <td><%= tax_category.description %></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">None.</td></tr>
    <% end %>    
  </tbody>
</table>

Version data entries

7 entries across 7 versions & 2 rubygems

Version Path
kdmny-spree-0.0.1 app/views/admin/tax_categories/index.html.erb
spree-0.8.4 app/views/admin/tax_categories/index.html.erb
spree-0.8.5 app/views/admin/tax_categories/index.html.erb
spree-0.8.0 app/views/admin/tax_categories/index.html.erb
spree-0.8.1 app/views/admin/tax_categories/index.html.erb
spree-0.8.2 app/views/admin/tax_categories/index.html.erb
spree-0.8.3 app/views/admin/tax_categories/index.html.erb