Sha256: d5c5ff6823f3dc5da584f9e7e5c1abbb2058ec1fbe91f4c48c7d62e0f9ee1cdd

Contents?: true

Size: 1.66 KB

Versions: 10

Compression:

Stored size: 1.66 KB

Contents

- in_section :events
- content_for :header do
  =render :partial=>'events/header'

.row
  .span3
    - in_sub_section :details
    =render :partial=>'events/menu'
  .span9
    = form_for( [@event, @venue], :html => { :class => 'form-horizontal' }) do |form|
      .control-group
        =form.label :name, "Venue name", :class => 'control-label'
        .controls
          = form.text_field :name
          
      .control-group
        =form.label :address1, "Address 1", :class => 'control-label'
        .controls
          = form.text_field :address1
          
      .control-group
        =form.label :address2, "Address 2", :class => 'control-label'
        .controls
          = form.text_field :address2
          
      .control-group
        =form.label :city, "City", :class => 'control-label'
        .controls
          = form.text_field :city
          
      .control-group
        =form.label :state, "State", :class => 'control-label'
        .controls
          = form.select(:state, options_for_select(us_states, @event.venue.state))
          
      .control-group
        =form.label :zip, "Zip", :class => 'control-label'
        .controls
          = form.text_field :zip
          
      .control-group
        =form.label :time_zone, :class => 'control-label' do
          "Time Zone"
          .tip.muted Changing your time zone will change your existing show times.
        .controls
          = form.time_zone_select :time_zone, ActiveSupport::TimeZone.us_zones, {:default => current_user.current_organization.time_zone}, {:class => 'input-xlarge'}
          
      .form-actions
        = render :partial => "shared/save_save_and_next", :locals => {:form => form}

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
artfully_ose-1.3.0.pre3 app/views/venues/edit.html.haml
artfully_ose-1.3.0.pre2 app/views/venues/edit.html.haml
artfully_ose-1.3.0.pre1 app/views/venues/edit.html.haml
artfully_ose-1.2.0 app/views/venues/edit.html.haml
artfully_ose-1.2.0.beta.1 app/views/venues/edit.html.haml
artfully_ose-1.2.0.alpha.2 app/views/venues/edit.html.haml
artfully_ose-1.2.0.alpha.1 app/views/venues/edit.html.haml
artfully_ose-1.2.0.pre.27 app/views/venues/edit.html.haml
artfully_ose-1.2.0.pre.26 app/views/venues/edit.html.haml
artfully_ose-1.2.0.pre.24 app/views/venues/edit.html.haml