2023-06-21 14:03:24 +00:00
|
|
|
= form_for site, html: { class: form_class(site) } do |f|
|
|
|
|
- unless site.persisted?
|
|
|
|
.form-group#design_id
|
|
|
|
- if invalid? site, :design_id
|
|
|
|
= render 'bootstrap/alert' do
|
|
|
|
= t('activerecord.errors.models.site.attributes.design_id.layout_incompatible.help',
|
|
|
|
layouts: site.incompatible_layouts.to_sentence)
|
2023-06-22 17:28:05 +00:00
|
|
|
.row.designs
|
2023-06-21 14:03:24 +00:00
|
|
|
- @designs = Design.all.order(priority: :desc)
|
2023-06-22 17:28:05 +00:00
|
|
|
.col-md-3.col-sm-12
|
2023-06-21 14:03:24 +00:00
|
|
|
%h5.pb-3 Selector de Plantillas
|
|
|
|
- @designs.each do |design|
|
2023-06-22 17:28:05 +00:00
|
|
|
.design.col.d-flex.flex-column.custom-control
|
|
|
|
.custom
|
2023-06-21 14:03:24 +00:00
|
|
|
= f.radio_button :design_id, design.id,
|
|
|
|
checked: design.id == site.design_id,
|
2023-06-22 17:28:05 +00:00
|
|
|
disabled: design.disabled,
|
|
|
|
required: true, class: 'radio-toolbar'
|
|
|
|
= f.label "design_id_#{design.id}", " - #{design.name}",
|
2023-06-21 14:03:24 +00:00
|
|
|
class: 'custom-control-label'
|
2023-06-22 17:28:05 +00:00
|
|
|
.flex-fill.des-description
|
2023-06-21 14:03:24 +00:00
|
|
|
= sanitize_markdown design.description,
|
|
|
|
tags: %w[p a strong em]
|
2023-06-22 17:28:05 +00:00
|
|
|
|
2023-06-21 14:03:24 +00:00
|
|
|
|
2023-06-22 17:28:05 +00:00
|
|
|
.col-md-6.col-sm-12
|
2023-06-21 14:03:24 +00:00
|
|
|
%h5.text-center.pb-3 Previsualizar Plantilla
|
|
|
|
.embed-responsive.embed-responsive-1by1
|
|
|
|
%iframe.embed-responsive-item{allowfullscreen: "", src: "https://www.youtube.com/embed/zpOULjyy-n8?rel=0"}
|
2023-06-22 17:28:05 +00:00
|
|
|
.col-md-3.col.sm-12
|
2023-06-21 14:03:24 +00:00
|
|
|
%h5.pb-3 Características
|
|
|
|
= @designs.first.inspect
|
|
|
|
|
|
|
|
|
|
|
|
|