Sha256: fa2c0b7a45cd43c21ae9a82d9062e5d9e15a30a5d2a6d1a98c37cdea510912f0

Contents?: true

Size: 1.36 KB

Versions: 2

Compression:

Stored size: 1.36 KB

Contents

= render "menu"

.row
  .col-lg-12
    .wrapper.wrapper-content.animated.fadeInUp
      .ibox
        .ibox-title
          %h5 Setup
          .ibox-tools
            %a.btn.btn-primary.btn-xs{:href => new_manage_campaign_path }
              Create new Template
        .ibox-content


          = render partial: "wizard_steps"
          = simple_form_for @campaign, url: wizard_path do |f|

            .col-lg-6
              = f.input :name
            .col-lg-6
              = f.input :subject

            .col-lg-6
              = f.input :logo, as: :file, input_html:{ image: @campaign.logo}

            .col-lg-6
              = f.input :from_name

            .col-lg-6
              = f.input :from_email

            .col-lg-6
              = f.input :reply_email

            .col-lg-6
              = f.input :query_string

            .col-lg-6
              = f.input :scheduled_at, as: :date_time_picker

            .col-lg-6
              = f.input :timezone, as: :select , collection: ActiveSupport::TimeZone.us_zones, default: "Pacific Time (US & Canada)"

            .col-lg-12
              = f.input :description
            -#= f.input :created_at
            -#= f.input :updated_at
            .clearfix
            %hr
            = f.button :submit, "Setup!", :class => "btn btn-primary", disable_with: "loading"

          = render partial: "wizard_nav"

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
chaskiq-0.0.3 app/views/chaskiq/manage/campaign_wizard/setup.haml
chaskiq-0.0.2 app/views/chaskiq/manage/campaign_wizard/setup.haml