Sha256: 64cb0ca4ce964a52d877b4d2764b1cb433df8c2872500ad4e3794805cbe23c2b

Contents?: true

Size: 1.88 KB

Versions: 8

Compression:

Stored size: 1.88 KB

Contents

- content_for :head do
  = include_javascripts :site

= f.foldable_inputs :name => :information, :style => "#{'display: none' unless @site.new_record?}" do
  = f.input :name, :required => false

= f.foldable_inputs :name => :meta do

  = f.input :meta_keywords
  = f.input :meta_description

= 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, :class => 'string label void domain'
       
      = 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 domain'
     
    %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')

= f.foldable_inputs :name => :memberships, :class => 'memberships' do
  - @site.memberships.each_with_index do |membership, index|
    - account = membership.account
    %li{ :class => "item #{'last' if index == @site.memberships.size - 1}" }
      %strong= account.name
      %em= account.email
      - if account != current_admin
        %span.actions
          = link_to image_tag('admin/form/icons/trash.png'), admin_membership_url(membership), :class => 'remove first', :confirm => t('admin.messages.confirm'), :method => :delete

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
locomotive_cms-1.0.0.beta.2 app/views/admin/current_sites/_form.html.haml
locomotive_cms-1.0.0.beta app/views/admin/current_sites/_form.html.haml
locomotive_cms-0.0.4.beta12 app/views/admin/current_sites/_form.html.haml
locomotive_cms-0.0.4.beta11 app/views/admin/current_sites/_form.html.haml
locomotive_cms-0.0.4.beta10 app/views/admin/current_sites/_form.html.haml
locomotive_cms-0.0.4.beta9 app/views/admin/current_sites/_form.html.haml
locomotive_cms-0.0.4.beta8 app/views/admin/current_sites/_form.html.haml
locomotive_cms-0.0.4.beta7 app/views/admin/current_sites/_form.html.haml