%= simple_form_for concept, :as => :concept,
:url => concept.new_record? ? concepts_path : concept_path(:published => 0, :id => concept),
:html => { :class => 'form-horizontal' } do |f| %>
<% Iqvoc::Concept.note_classes.each do |note_class| %>
<%= render note_class.edit_partial_name(concept), :owner_klass => concept, :assoc_klass => note_class, :f => f %>
<% end %>
<%= f.submit t("txt.common.save"), :class => "btn-primary" %>
<% end %>