_form.html.haml revision 25f979bdee494bf6a6aeb54d753352832212dd24
32N/A= simple_form_for resource, html: { class: 'form-horizontal' } do |f|
32N/A = f.input :iri, as: :url
493N/A = f.input :standardization_status, :as => :select, :collection => LogicMapping::STAND_STATUS, :include_blank => false
32N/A = f.input :defined_by, :as => :select, :collection => LogicMapping::DEFINED_BY, :include_blank => false
32N/A = f.input :default if resource.has_attribute? :default
32N/A = f.input :projection if resource.has_attribute? :projection
32N/A = f.input :faithfulness, :as => :select, :collection => LogicMapping::FAITHFULNESSES, :include_blank => false if resource.has_attribute? :faithfulness
32N/A = f.input :theoroidalness, :as => :select, :collection => LogicMapping::THEOROIDALNESSES, :include_blank => false if resource.has_attribute? :theoroidalness
32N/A = f.input :exactness, :as => :select, :collection => LogicMapping::EXACTNESSES, :include_blank => false if resource.has_attribute? :exactness
32N/A
32N/A = f.association :source, :include_blank => false
32N/A = f.association :target, :include_blank => false
32N/A = f.button :wrapped
32N/A