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

67 lines
2.2 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: 'nav_tabs', locals: { person: @person, tab: :overview } %>
<div class="row">
<div class="col-md-4">
<dl>
<dt><%= Person.human_attribute_name :account %></dt>
<dd><%= staff_account_link_or_none @person.account %></dd>
<dt><%= Person.human_attribute_name :last_name %></dt>
<dd><%= truncate @person.last_name %></dd>
<dt><%= Person.human_attribute_name :first_name %></dt>
<dd><%= truncate @person.first_name %></dd>
<dt><%= Person.human_attribute_name :middle_name %></dt>
<dd><%= truncate @person.middle_name %></dd>
<dt><%= Person.human_attribute_name :sex %></dt>
<dd><%= translate_enum :sex, @person.sex if @person.sex %></dd>
<dt><%= Person.human_attribute_name :date_of_birth %></dt>
<dd><%= localize @person.date_of_birth if @person.date_of_birth %></dd>
<dt><%= Person.human_attribute_name :place_of_birth %></dt>
<dd><%= truncate @person.place_of_birth if @person.place_of_birth %></dd>
</dl>
</div>
<div class="col-md-4">
<dl>
<dt><%= Relationship.human_attribute_name :status %></dt>
<dd><%= relationship_status_or_none @person.current_relationship %></dd>
<% if @person.current_relationship %>
<dt><%= Relationship.human_attribute_name :from_date %></dt>
<dd>
<%= localize @person.current_relationship.from_date,
format: :long %>
</dd>
<% end %>
<dt><%= Relationship.human_attribute_name :regional_office %></dt>
<dd>
<%= staff_regional_office_link_or_none \
@person.current_relationship&.regional_office %>
</dd>
</dl>
</div>
</div>
</div>