Sha256: 6488e8fec23438fecfd6d73fb6693a20ef73bb63927a740262dd7e2563f50db8
Contents?: true
Size: 1.04 KB
Versions: 19
Compression:
Stored size: 1.04 KB
Contents
<table class="index" id='listing_states' data-hook> <thead> <tr data-hook="states_header"> <th><%= t(:name) %></th> <th><%= t(:abbreviation) %></th> <th></th> </tr> </thead> <tbody> <% @states.each do |state| @edit_url = admin_country_state_path(@country, state) @delete_url = admin_country_state_path(@country, state) %> <tr id="<%= dom_id state %>" data-hook="states_row"> <td><%= state.name %></td> <td><%= state.abbr %></td> <td class="actions"> <%= link_to_with_icon 'edit', t(:edit), edit_admin_country_state_url(@country, state), :class => 'edit' %> <%= link_to_delete state %> </td> </tr> <% end %> <% if @states.empty? %> <tr><td colspan="3"><%= t(:none) %></td></tr> <% end %> </tbody> </table> <div id="new_state" data-hook></div> <p data-hook="buttons"> <%= button_link_to t(:new_state), new_admin_country_state_url(@country), {:remote => true, :icon => 'add', :id => 'new_state_link'} %> </p>
Version data entries
19 entries across 19 versions & 1 rubygems