16 lines
768 B
Plaintext
16 lines
768 B
Plaintext
.fancybox-wrapper
|
|
#edit-custom-field
|
|
%h2!= t('.title')
|
|
|
|
= form_tag '#', :class => 'formtastic' do
|
|
= fields_for CustomFields::Field.new, :builder => Formtastic::SemanticFormHelper.builder do |g|
|
|
= g.inputs :name => :attributes do
|
|
= g.input :_alias
|
|
= g.input :hint
|
|
= g.input :text_formatting, :as => 'select', :collection => options_for_text_formatting, :include_blank => false, :wrapper_html => { :style => 'display: none' }
|
|
= g.input :target, :as => 'select', :collection => options_for_association_target, :include_blank => false, :wrapper_html => { :style => 'display: none' }
|
|
|
|
.popup-actions
|
|
%p
|
|
%button.button.light{ :type => 'submit' }
|
|
%span= t('admin.shared.form_actions.update') |