45 lines
1.5 KiB
Text
45 lines
1.5 KiB
Text
<div class="container">
|
|
<%= simple_form_for [:staff, @passport], wrapper: :horizontal_form do |f| %>
|
|
<div class="row">
|
|
<div class="col-md-6">
|
|
<%= f.simple_fields_for :passport_maps do |ff| %>
|
|
<%= ff.input :first_name %>
|
|
<%= ff.input :middle_name %>
|
|
<%= ff.input :last_name %>
|
|
|
|
<%= ff.input :sex,
|
|
as: :radio_buttons,
|
|
wrapper: :horizontal_collection_inline,
|
|
collection: PassportMap.sexes.keys.map { |sex|
|
|
[PassportMap.human_attribute_name("sex.#{sex}"), sex]
|
|
} %>
|
|
|
|
<%= ff.input :date_of_birth,
|
|
wrapper: :horizontal_multi_select,
|
|
start_year: Date.today.year - 150,
|
|
end_year: Date.today.year %>
|
|
|
|
<%= ff.input :place_of_birth %>
|
|
<%= ff.input :series %>
|
|
<%= ff.input :number %>
|
|
<%= ff.input :issued_by %>
|
|
<%= ff.input :unit_code %>
|
|
|
|
<%= ff.input :date_of_issue,
|
|
wrapper: :horizontal_multi_select,
|
|
start_year: Date.today.year - 150,
|
|
end_year: Date.today.year %>
|
|
<% end %>
|
|
</div>
|
|
|
|
<div class="col-md-6">
|
|
<%= f.input :images %>
|
|
<div>
|
|
<%= image_tag 'image_placeholder.png', id: :image, class: 'img-fluid', style: 'max-height: 600px' %>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<%= f.button :submit %>
|
|
<% end %>
|
|
</div>
|