Sha256: d113a8e4e4e676c1dd435286b334b8e2ee8be3f4de7befd5a2ae26e3a3157ef7
Contents?: true
Size: 909 Bytes
Versions: 4
Compression:
Stored size: 909 Bytes
Contents
<table class="table sortable" id='listing_volume_price_models' data-hook> <thead> <tr data-hook="volume_price_models_header"> <th class="no-border"></th> <th><%= t('spree.name') %></th> <th class="actions"></th> </tr> </thead> <tbody> <% @volume_price_models.each do |price_model| %> <tr id="<%= spree_dom_id price_model %>" data-hook="volume_price_models_row"> <td class="move-handle"> <span class="icon icon-sort handle"></span> </td> <td><%= price_model.name %></td> <td class="actions actions-2 text-right"> <% if can?(:update, price_model) %> <%= link_to_edit price_model, no_text: true %> <% end %> <% if can?(:destroy, price_model) %> <%= link_to_delete price_model, no_text: true %> <% end %> </td> </tr> <% end %> </tbody> </table>
Version data entries
4 entries across 4 versions & 1 rubygems