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

36 lines
884 B
Plaintext

<table class="table">
<thead>
<tr>
<th scope="col">
<%= Passport.human_attribute_name :series %>
</th>
<th scope="col">
<%= Passport.human_attribute_name :number %>
</th>
<th scope="col">
<%= Passport.human_attribute_name :unit_code %>
</th>
<th scope="col">
<%= Passport.human_attribute_name :date_of_issue %>
</th>
<th scope="col"></th>
</tr>
</thead>
<tbody>
<% passports.each do |passport| %>
<tr>
<td><%= passport.series %></td>
<td><%= passport.number %></td>
<td><%= passport.unit_code %></td>
<td><%= passport.date_of_issue %></td>
<td>
<% if policy([:settings, passport]).show? %>
<%= open_action [:settings, passport] %>
<% end %>
</td>
</tr>
<% end %>
</tbody>
</table>