Sha256: 6759986a2cb41ed680e4e5ddb5a0d9fd3912d08b760cf0b5e85e1afee1bf2f2c

Contents?: true

Size: 846 Bytes

Versions: 7

Compression:

Stored size: 846 Bytes

Contents

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

<h1><%= t("shipping_methods") %></h1>

<table class="index">
  <thead>
    <th><%= t("name") %></th>
    <th><%= t("zone") %></th>
    <th><%= t("shipping_calculator") %></th>
    <th><%= t("action") %></th>
  </thead>
  <tbody>
    <% @shipping_methods.each do |shipping_method|%>
    <tr>
      <td width="100px"><%= shipping_method.name %></td>
      <td width="100px"><%= shipping_method.zone.name %></td>
      <td width="100px"><%= shipping_method.shipping_calculator %></td>      
      <td>
      	<%= link_to_edit shipping_method %> &nbsp;
      	<%= link_to_delete shipping_method %>
      </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/shipping_methods/index.html.erb
spree-0.8.4 app/views/admin/shipping_methods/index.html.erb
spree-0.8.5 app/views/admin/shipping_methods/index.html.erb
spree-0.8.0 app/views/admin/shipping_methods/index.html.erb
spree-0.8.1 app/views/admin/shipping_methods/index.html.erb
spree-0.8.2 app/views/admin/shipping_methods/index.html.erb
spree-0.8.3 app/views/admin/shipping_methods/index.html.erb