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/staff/people/index.html.erb

32 lines
758 B
Text
Raw Normal View History

<div class="container">
<table class="table">
<thead>
<tr>
<th scope="col">
<%= Person.human_attribute_name :id %>
</th>
<th scope="col">
<%= Person.human_attribute_name :regional_office %>
</th>
<th scope="col"></th>
</tr>
</thead>
<tbody>
<% @people.each do |person| %>
<tr>
<td scope="row"><%= person.id %></td>
<td>
<% if person.regional_office %>
<%= link_to person.regional_office.country_state.display_name,
person.regional_office.country_state %>
<% end %>
</td>
<td>
</td>
</tr>
<% end %>
</tbody>
</table>
</div>