Sha256: 166fdac11467cc6bcbb27a8a856b279f6a07e140c66f3e2036cb70d1fa36274d
Contents?: true
Size: 849 Bytes
Versions: 98
Compression:
Stored size: 849 Bytes
Contents
<div id="new_state" data-hook></div> <table class="table" id='listing_states' data-hook> <thead> <tr data-hook="states_header"> <th><%= Spree.t(:name) %></th> <th class="text-center"><%= Spree.t(:abbreviation) %></th> <th class="actions"></th> </tr> </thead> <tbody> <% @states.each do |state| %> <tr id="<%= spree_dom_id state %>" data-hook="states_row"> <td><%= state.name %></td> <td class="text-center"><%= state.abbr %></td> <td class="actions actions-2 text-right"> <%= link_to_edit(state, no_text: true) if can? :edit, state %> <%= link_to_delete(state, no_text: true) if can? :delete, state %> </td> </tr> <% end %> <% if @states.empty? %> <tr><td colspan="3"><%= Spree.t(:none) %></td></tr> <% end %> </tbody> </table>
Version data entries
98 entries across 98 versions & 1 rubygems