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-30 21:15:26 +00:00
|
|
|
.row.designs.d-none.d-lg-flex
|
2023-06-21 14:03:24 +00:00
|
|
|
- @designs = Design.all.order(priority: :desc)
|
2023-06-30 21:15:26 +00:00
|
|
|
.col-md-3.designlist
|
2023-06-21 14:03:24 +00:00
|
|
|
%h5.pb-3 Selector de Plantillas
|
|
|
|
- @designs.each do |design|
|
2023-06-30 21:15:26 +00:00
|
|
|
.design.col.d-flex.flex-column.custom-control-design{"data-controller" => "designs"}
|
|
|
|
%div{"data-designs-target" => "radio", "data-action" => "click->designs#selection"}
|
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-30 21:15:26 +00:00
|
|
|
class: 'custom-control-design-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-30 21:15:26 +00:00
|
|
|
.col-md-6.designlist
|
2023-06-21 14:03:24 +00:00
|
|
|
%h5.text-center.pb-3 Previsualizar Plantilla
|
|
|
|
.embed-responsive.embed-responsive-1by1
|
2023-06-30 21:15:26 +00:00
|
|
|
%iframe.embed-responsive-item{allowfullscreen: "", src: "/placeholder.png"}
|
|
|
|
.col-md-3
|
2023-06-21 14:03:24 +00:00
|
|
|
%h5.pb-3 Características
|
2023-06-30 21:15:26 +00:00
|
|
|
%div{"data-designs-target" => "infocar"}
|
|
|
|
%p.design 1. Es gratis
|
|
|
|
%p.design 2. Sofware libre - Licencia GPL
|
|
|
|
%p.design 3. Compatible con la web distribuida
|
|
|
|
%br
|
|
|
|
%button.btn.btn-primary.btn-lg.btn-block{type: "button"} Ver código fuente
|
|
|
|
|
|
|
|
.row.pt-5
|
|
|
|
.col-lg-10.offset-2
|
|
|
|
.row
|
|
|
|
.col-8
|
|
|
|
%h3.text-primary= t('.custom.title')
|
|
|
|
%p= t('.custom.help')
|
|
|
|
.col-4.pt-3
|
|
|
|
%button.btn.btn-primary= t('.custom.contact')
|
|
|
|
.row.py-4
|
|
|
|
.col-lg-10.offset-2
|
|
|
|
.row
|
|
|
|
.col-8
|
|
|
|
%h3.text-primary= t('.donation.title')
|
|
|
|
%p= t('.donation.help')
|
|
|
|
.col-4.pt-3
|
|
|
|
%button.btn.btn-primary= t('.donation.link')
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2023-06-21 14:03:24 +00:00
|
|
|
|