Sha256: 7b906012a3c3588b7d9c5470f06fc886a09e46676cfc1fed554bf404a8f074a3

Contents?: true

Size: 1.28 KB

Versions: 1

Compression:

Stored size: 1.28 KB

Contents

.email-contexts--form
  %h2
    New Email Context
    - if email_ctx.email_template
      with template `#{email_ctx.email_template.slug}` type:#{email_ctx.email_template.type}.

  - url = %w| index new create |.include?( params[:action] ) ? email_contexts_path : email_context_path(email_ctx)
  = form_for email_ctx, url: url do |f|
    .row
      .col.s6
        .field
          = f.label :email_template_id
          = f.select :email_template_id, options_for_select(@email_templates_list, selected: params[:email_template_id] || email_ctx.email_template&.id )

        .field
          = f.label :from_email
          = f.select :from_email, options_for_select(Ish::EmailContext.from_email_list, selected: email_ctx.from_email)
        .field
          = f.label :to_email
          = f.text_field :to_email

      .col.s6
        %h5 Templating
        .field
          = f.label :name
          = f.text_field :name
    .field.field-subject
      = f.label :subject
      = f.text_field :subject
    - if 'plain' == email_ctx.email_template&.type
      .body
        = raw email_ctx.email_template.body
    - else
      .field
        = f.label :body
        = f.text_area :body, class: 'tinymce'
    .actions
      .left
        = f.submit 'Preview'
      .right
        -# = f.submit 'Schedule/Send'

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
ish_manager-0.1.8.328 app/views/ish_manager/email_contexts/_form.haml