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

21 lines
598 B
Text

<div class="container">
<%= nav_breadcrumb(
[translate(:staff_services), staff_root_path],
[Person.model_name.human(count: 0), staff_people_path],
translate(:create),
) %>
<%= simple_form_for [:staff, @person] do |f| %>
<%= f.error_notification %>
<%= f.input :last_name %>
<%= f.input :first_name %>
<%= f.input :middle_name %>
<%= f.input :sex, collection: Person.sexes.keys.map(&:to_sym) %>
<%= f.input :date_of_birth %>
<%= f.input :place_of_birth %>
<%= f.input :photo, direct_upload: true %>
<%= f.button :submit %>
<% end %>
</div>