<%= render partial: 'nav_tabs', locals: { person: @person, tab: :overview } %>
<%= Person.human_attribute_name :first_name %>
<%= truncate @person.first_name %>
<%= Person.human_attribute_name :middle_name %>
<%= truncate @person.middle_name %>
<%= Person.human_attribute_name :last_name %>
<%= truncate @person.last_name %>
<%= Person.human_attribute_name :sex %>
<%= translate_enum :sex, @person.sex %>
<%= Person.human_attribute_name :date_of_birth %>
<%= localize @person.date_of_birth %>
<%= Person.human_attribute_name :place_of_birth %>
<%= truncate @person.place_of_birth %>
<%= Person.human_attribute_name :current_regional_office %>
<% if @person.current_regional_office %> <%= link_to( @person.current_regional_office.federal_subject.display_name, @person.current_regional_office.federal_subject, ) %> <% else %> <%= translate :none %> <% end %>