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

22 lines
727 B
Text
Raw Normal View History

<div class="container">
<dl>
<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 :last_name %></dt>
<dd><%= truncate @person.last_name %></dd>
<dt><%= Person.human_attribute_name :sex %></dt>
<dd><%= Person.human_attribute_name "sex.#{@person.sex}" %></dd>
<dt><%= Person.human_attribute_name :date_of_birth %></dt>
<dd><%= localize @person.date_of_birth %></dd>
<dt><%= Person.human_attribute_name :place_of_birth %></dt>
<dd><%= truncate @person.place_of_birth %></dd>
</dl>
</div>