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

44 lines
1.3 KiB
Text

<table class="table">
<thead>
<tr>
<th scope="col">
<%= Relationship.human_attribute_name :id %>
</th>
<th scope="col">
<%= Relationship.human_attribute_name :status %>
</th>
<th scope="col">
<%= Relationship.human_attribute_name :position %>
</th>
<th scope="col">
<%= Relationship.human_attribute_name :from_date %>
</th>
<th scope="col">
<%= Relationship.human_attribute_name :regional_office %>
</th>
<th scope="col">
<%= Relationship.human_attribute_name :initiator_account %>
</th>
<th scope="col"></th>
</tr>
</thead>
<tbody>
<% relationships.each do |relationship| %>
<tr>
<td scope="row"><%= relationship.id %></td>
<td><%= relationship_status_or_none relationship %></td>
<td><%= relationship_short_position_or_none relationship %></td>
<td><%= relationship_from_date_or_none relationship %></td>
<td>
<%= staff_regional_office_link_or_none \
relationship.regional_office %>
</td>
<td>
<%= staff_account_link_or_none relationship.initiator_account %>
</td>
<td></td>
</tr>
<% end %>
</tbody>
</table>