Sha256: a8d1797d7c785cb98a45d7777e80dbf476a4ac69b2eeefe5b8d2a69efb8c451e
Contents?: true
Size: 1.54 KB
Versions: 7
Compression:
Stored size: 1.54 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 :title = f.text_field :title .field = f.label :from_email = f.select :from_email, options_for_select(Ish::EmailContext.from_email_list, selected: email_ctx.from_email) .col.s6 .field = f.label :type = f.select :type, options_for_select(Ish::EmailContext.types_list, selected: email_ctx.type) .TYPE_SINGLE .field = f.label :to_email = f.text_field :to_email %h5 Templating .field = f.label :tmpl_name = f.text_field :tmpl_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
7 entries across 7 versions & 1 rubygems