<%= Iqvoc::Concept.base_class.model_name.human %>
<%= form_for @concept, :as => 'concept',
:url => @concept.new_record? ? concepts_path : concept_path(:published => 0, :id => @concept),
:html => {:class => "form"} do |f| %>
<% Iqvoc::Concept.note_classes.each do |note_class| %>
<%= render :partial => note_class.edit_partial_name(@concept),
:locals => { :owner_klass => @concept, :assoc_klass => note_class, :f => f } %>
<% end %>
<%= f.submit t("txt.common.save") %>
<% unless controller.action_name == "new" || controller.action_name == "create" %>
<%= link_to t("txt.common.reset"), nil, :class => "button" %>
<% end %>
<% end %>