%= form_for(@subject) do |f| -%>
<%= f.error_messages -%>
<%= f.label t('activerecord.models.subject_type') -%>
<%= f.select(:subject_type_id, @subject_types.collect{|s| [s.display_name.localize, s.id]}) -%>
<%= f.label :term -%>
<%= f.text_field :term -%>
<%= f.label :term_transcription -%>
<%= f.text_field :term_transcription -%>
<%= f.label :note -%>
<%= f.text_area :note -%>
<%= f.label t('activerecord.models.subject_heading_type') -%>
<%= f.select(:subject_heading_type_id, @subject_heading_types.collect{|s| [s.display_name.localize, s.id]}) -%>
<%= f.submit %>
<%- end -%>