<%= person.id %> |
<%= truncate person.last_name, length: 15 %> |
<%= truncate person.first_name, length: 15 %> |
<%= truncate person.middle_name, length: 15 %> |
<%= localize person.date_of_birth if person.date_of_birth %>
|
<% if person.place_of_birth %>
<%= truncate person.place_of_birth, length: 15 %>
<% end %>
|
<% if policy([:staff, person]).show? %>
<%= open_action [:staff, person] %>
<% end %>
|
<% end %>