56 lines
1.5 KiB
Text
56 lines
1.5 KiB
Text
<div class="container">
|
|
<nav aria-label="breadcrumb">
|
|
<ol class="breadcrumb">
|
|
<li class="breadcrumb-item">
|
|
<%= link_to translate(:staff_services), staff_root_path %>
|
|
</li>
|
|
|
|
<li class="breadcrumb-item">
|
|
<%= link_to Person.model_name.human(count: 0), staff_people_path %>
|
|
</li>
|
|
|
|
<li class="breadcrumb-item active" aria-current="page">
|
|
<%= @person.full_name %>
|
|
</li>
|
|
</ol>
|
|
</nav>
|
|
|
|
<%= render partial: 'staffs/people/nav_tabs', locals: { person: @person,
|
|
tab: :passports } %>
|
|
|
|
<table class="table">
|
|
<thead>
|
|
<tr>
|
|
<th scope="col">
|
|
<%= Passport.human_attribute_name :id %>
|
|
</th>
|
|
<th scope="col">
|
|
<%= Passport.human_attribute_name :series %>
|
|
</th>
|
|
<th scope="col">
|
|
<%= Passport.human_attribute_name :number %>
|
|
</th>
|
|
<th scope="col">
|
|
<%= Passport.human_attribute_name :unit_code %>
|
|
</th>
|
|
<th scope="col">
|
|
<%= Passport.human_attribute_name :date_of_issue %>
|
|
</th>
|
|
<th scope="col"></th>
|
|
</tr>
|
|
</thead>
|
|
|
|
<tbody>
|
|
<% @passports.each do |passport| %>
|
|
<tr>
|
|
<td scope="row"><%= passport.id %></td>
|
|
<td><%= passport.series %></td>
|
|
<td><%= passport.number %></td>
|
|
<td><%= passport.unit_code %></td>
|
|
<td><%= passport.date_of_issue %></td>
|
|
<td></td>
|
|
</tr>
|
|
<% end %>
|
|
</tbody>
|
|
</table>
|
|
</div>
|