<%= simple_form_for [:curation_concern, curation_concern] do |f| %> <% if f.error_notification -%>
Wait don't go! There was a problem with your submission. Please review the errors below: ×
<% end -%>
Required Information <%= f.input :title, input_html: { class: 'input-xlarge' } %> <%= f.input :description, as: :text, hint: 'Please keep your abstract to 300 words or less.', input_html: { class: 'input-xxxlarge', rows: '14' }, label: 'Abstract' %>
Additional Information <%= f.input :contributor, as: :multi_value, input_html: { class: 'input-xlarge' }, hint: 'Be sure to add your name because you are a contributor to your own thesis.'.html_safe %> <%= f.input :subject, as: :multi_value, input_html: { class: 'input-xlarge' } %> <%= f.input :publisher, as: :multi_value, input_html: { class: 'input-xlarge' } %> <%= f.input :bibliographic_citation, as: :multi_value, input_html: { class: 'input-xlarge' } %> <%= f.input :source, as: :multi_value, input_html: { class: 'input-xlarge' } %> <%= f.input :language, as: :multi_value, input_html: { class: 'input-xlarge' } %>
<% unless curation_concern.persisted? %>
Attach Your Thesis A PDF copy is preferred. <%= f.input :thesis_file, as: :file, label: 'Upload your thesis' %>
<% end %>
<%= render "/curation_concern/doi", curation_concern: curation_concern, f: f %>
<%= render "/curation_concern/permission", curation_concern: curation_concern, f: f %>
<%= render "/curation_concern/content_license", curation_concern: curation_concern, f: f %>
<%= render '/curation_concern/contributor_agreement', curation_concern: curation_concern, contributor_agreement: contributor_agreement %>
<%= f.submit class: 'btn btn-primary' %> <%= f.submit value: save_and_add_related_files_submit_value, class: 'btn btn-primary' %> <%= link_to 'Cancel', dashboard_index_path, class: 'btn btn-link' %>
<% end %>