Sha256: 59435636f0aefb3610eb9a9410a635d9cb170a4b60824a72d70325fe0df96679

Contents?: true

Size: 836 Bytes

Versions: 6

Compression:

Stored size: 836 Bytes

Contents

<div class='toolbar'>
  <ul class='actions'>
    <li>
      <%= button_link_to t("new_tax_rate"), new_object_url, :icon => 'add'  %>
    </li>
  </ul>
  <br class='clear' />
</div>
<h1><%=t("tax_rates") %></h1>
<table class="index">
  <thead>                        
    <th><%=t("zone")%></th>
    <th><%=t("category")%></th>
    <th><%=t("amount")%></th>
    <th><%=t("calculator")%></th>
    <th><%=t("action")%></th>
  </thead>
  <tbody>
    <% @tax_rates.each do |tax_rate|%>
    <tr id="<%= dom_id tax_rate %>">
      <td><%=tax_rate.zone.name %></td>
      <td><%=tax_rate.tax_category.name %></td>
      <td><%=tax_rate.amount %></td>
      <td><%=tax_rate.calculator.to_s %></td>
      <td>
      	<%= link_to_edit tax_rate %> &nbsp;
      	<%= link_to_delete tax_rate %>
      </td>
    </tr>
    <% end %>
  </tbody>
</table>

Version data entries

6 entries across 6 versions & 2 rubygems

Version Path
spree-enriquez-0.9.4 app/views/admin/tax_rates/index.html.erb
spree-0.9.4 app/views/admin/tax_rates/index.html.erb
spree-0.9.3 app/views/admin/tax_rates/index.html.erb
spree-0.9.2 app/views/admin/tax_rates/index.html.erb
spree-0.9.1 app/views/admin/tax_rates/index.html.erb
spree-0.9.0 app/views/admin/tax_rates/index.html.erb