%-
# TODO: Change Concept.labeling_classes to Collection.labeling_classes (in model
# too). If those two settings differ (e.g. in spez) don't forget to add
# migrations to update existing data.
-%>
<%= simple_form_for collection, :as => :concept, :url => collection.new_record? ? collections_path : collection_path(collection), :html => { :class => 'form-horizontal' } do |f| %>
<%- # TODO: Add a Collection config for Note classes. %>
<% [ Note::SKOS::Definition ].each do |klass| %>
<%= render klass.edit_partial_name(@collection), :owner_klass => @collection, :assoc_klass => klass, :f => f %>
<% end %>
<%= f.submit t("txt.common.save"), :class => "btn-primary" %>
<% end %>