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/_table.html.erb

36 lines
976 B
Text
Raw Normal View History

2019-09-03 10:31:20 -04:00
<table class="table">
<thead>
<tr>
<th scope="col">
<%= FederalSubject.human_attribute_name :number %>
</th>
<th scope="col">
<%= FederalSubject.human_attribute_name :display_name %>
</th>
<th scope="col">
<%= FederalSubject.human_attribute_name :centre %>
</th>
<th scope="col">
<%= FederalSubject.human_attribute_name :timezone %>
</th>
<th scope="col"></th>
</tr>
</thead>
<tbody>
<% federal_subjects.each do |federal_subject| %>
<tr>
<td><%= federal_subject.number %></td>
<td><%= truncate federal_subject.display_name, length: 25 %></td>
<td><%= truncate federal_subject.centre, length: 15 %></td>
<td><%= federal_subject.timezone %></td>
<td>
<% if policy(federal_subject).show? %>
<%= open_action federal_subject %>
<% end %>
</td>
</tr>
<% end %>
</tbody>
</table>