33 lines
890 B
Text
33 lines
890 B
Text
<div class="container">
|
|
<table class="table">
|
|
<thead>
|
|
<tr>
|
|
<th scope="col">
|
|
<%= CountryState.human_attribute_name :english_name %>
|
|
</th>
|
|
<th scope="col">
|
|
<%= CountryState.human_attribute_name :native_name %>
|
|
</th>
|
|
<th scope="col"></th>
|
|
</tr>
|
|
</thead>
|
|
|
|
<tbody>
|
|
<% @country_states.each do |country_state| %>
|
|
<tr>
|
|
<td><%= country_state.english_name %></td>
|
|
<td><%= country_state.native_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>
|