27 lines
669 B
Text
27 lines
669 B
Text
<table class="table">
|
|
<thead>
|
|
<tr>
|
|
<th scope="col">
|
|
<%= RelationStatus.human_attribute_name :codename %>
|
|
</th>
|
|
<th scope="col">
|
|
<%= RelationStatus.human_attribute_name :name %>
|
|
</th>
|
|
<th scope="col"></th>
|
|
</tr>
|
|
</thead>
|
|
|
|
<tbody>
|
|
<% relation_statuses.each do |relation_status| %>
|
|
<tr>
|
|
<td scope="row"><%= relation_status.codename %></td>
|
|
<td><%= relation_status.name %></td>
|
|
<td>
|
|
<% if policy([:staff, relation_status]).show? %>
|
|
<%= open_action [:staff, relation_status] %>
|
|
<% end %>
|
|
</td>
|
|
</tr>
|
|
<% end %>
|
|
</tbody>
|
|
</table>
|