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

24 lines
589 B
Text

<div class="container">
<%= render partial: 'staffs/people/nav_tabs',
locals: { person: @person, tab: :resident_registrations } %>
<table class="table">
<thead>
<tr>
<th scope="col">
<%= ResidentRegistration.human_attribute_name :id %>
</th>
<th scope="col"></th>
</tr>
</thead>
<tbody>
<% @resident_registrations.each do |resident_registration| %>
<tr>
<td scope="row"><%= resident_registration.id %></td>
<td></td>
</tr>
<% end %>
</tbody>
</table>
</div>