Sha256: 5c772a8a8ba844176d0fac534c1767744a2c7f254fd9e2632fba63fcec541330
Contents?: true
Size: 868 Bytes
Versions: 6
Compression:
Stored size: 868 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("calculator") %></th> <th><%= t("action") %></th> </thead> <tbody> <% @shipping_methods.each do |shipping_method|%> <tr id="<%= dom_id shipping_method %>"> <td width="100px"><%= shipping_method.name %></td> <td width="100px"><%= shipping_method.zone.name %></td> <td width="100px"><%= shipping_method.calculator.to_s %></td> <td> <%= link_to_edit shipping_method %> <%= link_to_delete shipping_method %> </td> </tr> <% end %> </tbody> </table>
Version data entries
6 entries across 6 versions & 2 rubygems