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/federal_subjects/index.html.erb
2019-06-23 20:59:44 +05:00

33 lines
906 B
Text

<div class="container">
<table class="table">
<thead>
<tr>
<th scope="col">
<%= FederalSubject.human_attribute_name :english_name %>
</th>
<th scope="col">
<%= FederalSubject.human_attribute_name :native_name %>
</th>
<th scope="col"></th>
</tr>
</thead>
<tbody>
<% @federal_subjects.each do |federal_subject| %>
<tr>
<td><%= federal_subject.english_name %></td>
<td><%= federal_subject.native_name %></td>
<td>
<% if policy(federal_subject).show? %>
<%= link_to federal_subject,
role: :button,
class: 'btn btn-light btn-sm' do %>
<i class="far fa-eye"></i>
<% end %>
<% end %>
</td>
</tr>
<% end %>
</tbody>
</table>
</div>