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/staffs/org_units/_table.html.erb
2019-10-02 17:36:38 +05:00

23 lines
493 B
Text

<table class="table">
<thead>
<tr>
<th scope="col">
<%= OrgUnit.human_attribute_name :short_name %>
</th>
<th scope="col"></th>
</tr>
</thead>
<tbody>
<% org_units.each do |org_unit| %>
<tr>
<td scope="row"><%= org_unit.short_name %></td>
<td>
<% if policy([:staff, org_unit]).show? %>
<%= open_action [:staff, org_unit] %>
<% end %>
</td>
</tr>
<% end %>
</tbody>
</table>