35 lines
1.2 KiB
Plaintext
35 lines
1.2 KiB
Plaintext
- content_for :head do
|
|
= javascript_include_tag 'admin/site'
|
|
|
|
= f.foldable_inputs :name => :information, :style => "#{'display: none' unless @site.new_record?}" do
|
|
= f.input :name, :required => false
|
|
|
|
= f.foldable_inputs :name => :access_points, :class => 'editable-list off' do
|
|
|
|
= f.custom_input :subdomain, :css => 'path' do
|
|
%em
|
|
http://
|
|
= f.text_field :subdomain
|
|
\.
|
|
%em
|
|
= application_domain
|
|
|
|
- @site.domains_without_subdomain.each_with_index do |name, index|
|
|
%li{ :class => "item added #{'last' if index == @site.domains.size - 1}"}
|
|
%em
|
|
http://
|
|
= text_field_tag 'site[domains][]', name
|
|
|
|
= error_on_domain(@site, name)
|
|
%span.actions
|
|
= link_to image_tag('admin/form/icons/trash.png'), '#', :class => 'remove first', :confirm => t('admin.messages.confirm')
|
|
|
|
%li.item.template
|
|
%em
|
|
http://
|
|
= text_field_tag 'label', t('formtastic.hints.site.domain_name'), :class => 'string label void'
|
|
|
|
%span.actions
|
|
= link_to image_tag('admin/form/icons/trash.png'), '#', :class => 'remove first', :confirm => t('admin.messages.confirm')
|
|
%button{ :class => 'button light add', :type => 'button' }
|
|
%span!= t('admin.buttons.new_item') |