1
0
Fork 0
This repository has been archived on 2023-03-27. You can view files and clone it, but cannot push or open issues or pull requests.
lpr-partynest/app/views/country_states/index.html.erb

29 lines
693 B
Text
Raw Normal View History

2019-01-31 17:38:06 -05:00
<div class="container">
<table class="table">
<thead>
<tr>
<th scope="col">
<%= CountryState.human_attribute_name :name %>
</th>
<th scope="col"></th>
</tr>
</thead>
<tbody>
<% @country_states.each do |country_state| %>
<tr>
<td><%= country_state.name %></td>
<td>
<% if policy(country_state).show? %>
<%= link_to country_state,
role: :button, class: 'btn btn-light btn-sm' do %>
<i class="far fa-eye"></i>
<% end %>
<% end %>
</td>
</tr>
<% end %>
</tbody>
</table>
</div>