<%= Person.human_attribute_name :id %> | <%= Person.human_attribute_name :last_name %> | <%= Person.human_attribute_name :first_name %> | <%= Person.human_attribute_name :middle_name %> | <%= Person.human_attribute_name :date_of_birth %> | <%= Person.human_attribute_name :place_of_birth %> | |
---|---|---|---|---|---|---|
<%= 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? %> <%= link_to [:staff, person], role: :button, class: 'btn btn-light btn-sm' do %> <% end %> <% end %> |