18 lines
1.2 KiB
Plaintext
18 lines
1.2 KiB
Plaintext
- highlighted_field_name = parent.highlighted_field_name rescue ''
|
|
|
|
= form.inputs :name => title || :attributes do
|
|
- form.object.custom_fields.each do |field|
|
|
- required = highlighted_field_name == field._name
|
|
|
|
- if field.string?
|
|
= form.input field._alias.to_sym, :label => field.label, :hint => field.hint, :required => required
|
|
- elsif field.text?
|
|
= form.input field._alias.to_sym, :label => field.label, :hint => field.hint, :as => :text, :required => required, :input_html => { :class => field.text_formatting }
|
|
- elsif field.category?
|
|
= form.custom_input field._alias.to_sym, :label => field.label, :hint => field.hint, :css => 'toggle' do
|
|
= form.select field._name.to_sym, field.ordered_category_items.collect { |item| [item.name, item.id] }
|
|
%button.button.light.edit-categories-link{ :type => 'button', :'data-url' => edit_admin_custom_field_path(parent.model_name.underscore, parent.slug, field) }
|
|
%span= t('.edit_categories')
|
|
- elsif field.boolean?
|
|
= form.custom_input field._alias.to_sym, :label => field.label, :hint => field.hint, :css => 'toggle' do
|
|
= form.check_box field._alias.to_sym |