2019-07-31 20:55:34 +00:00
|
|
|
= form_for site, html: { class: form_class(site) } do |f|
|
2019-07-13 00:20:36 +00:00
|
|
|
.form-group
|
2019-07-17 22:18:48 +00:00
|
|
|
%h2= f.label :name
|
2019-09-24 22:50:20 +00:00
|
|
|
%p.lead= sanitize_markdown t('.help.name'), tags: %w[strong]
|
2019-07-31 20:55:34 +00:00
|
|
|
-#
|
|
|
|
El dominio contiene letras y números
|
|
|
|
No puede empezar ni terminar con guiones
|
|
|
|
No puede estar compuesto solo de números
|
|
|
|
|
|
|
|
= f.text_field :name,
|
|
|
|
class: form_control(site, :name),
|
|
|
|
required: true,
|
2019-11-18 17:08:30 +00:00
|
|
|
pattern: '^([a-z0-9][a-z0-9\-]*)?[a-z0-9\.]$',
|
2019-07-31 20:55:34 +00:00
|
|
|
minlength: 1,
|
|
|
|
maxlength: 63
|
|
|
|
- if invalid? site, :name
|
|
|
|
.invalid-feedback= site.errors.messages[:name].join(', ')
|
2019-08-01 18:15:31 +00:00
|
|
|
|
2019-07-31 20:55:34 +00:00
|
|
|
.form-group
|
|
|
|
%h2= f.label :title
|
|
|
|
%p.lead= t('.help.title')
|
|
|
|
= f.text_field :title, class: form_control(site, :title),
|
|
|
|
required: true
|
|
|
|
- if invalid? site, :title
|
|
|
|
.invalid-feedback= site.errors.messages[:title].join(', ')
|
2019-08-01 18:15:31 +00:00
|
|
|
|
2019-07-31 20:55:34 +00:00
|
|
|
.form-group
|
|
|
|
%h2= f.label :description
|
|
|
|
%p.lead= t('.help.description')
|
|
|
|
= f.text_area :description, class: form_control(site, :description),
|
|
|
|
maxlength: 160, minlength: 50, required: true
|
|
|
|
- if invalid? site, :description
|
|
|
|
.invalid-feedback= site.errors.messages[:description].join(', ')
|
2019-08-01 18:15:31 +00:00
|
|
|
%hr/
|
|
|
|
|
2019-07-17 22:18:48 +00:00
|
|
|
.form-group
|
|
|
|
%h2= t('.design.title')
|
|
|
|
%p.lead= t('.help.design')
|
2020-03-31 21:30:09 +00:00
|
|
|
.row.designs
|
2019-07-17 22:18:48 +00:00
|
|
|
-# Demasiado complejo para un f.collection_radio_buttons
|
2020-03-31 21:30:09 +00:00
|
|
|
- Design.all.find_each do |design|
|
|
|
|
.design.col-md-4.d-flex.flex-column
|
|
|
|
.custom-control.custom-radio
|
2019-07-17 22:18:48 +00:00
|
|
|
= f.radio_button :design_id, design.id,
|
|
|
|
checked: design.id == site.design_id,
|
2019-10-14 15:17:01 +00:00
|
|
|
disabled: design.disabled,
|
2020-03-31 21:30:09 +00:00
|
|
|
required: true, class: 'custom-control-input'
|
|
|
|
= f.label "design_id_#{design.id}", design.name,
|
|
|
|
class: 'custom-control-label'
|
|
|
|
.flex-fill
|
|
|
|
= sanitize_markdown design.description,
|
|
|
|
tags: %w[p a strong em]
|
2019-07-17 22:18:48 +00:00
|
|
|
|
|
|
|
.btn-group{ role: 'group', 'aria-label': t('.design.actions') }
|
|
|
|
- if design.url
|
|
|
|
= link_to t('.design.url'), design.url,
|
2019-09-12 16:55:20 +00:00
|
|
|
target: '_blank', class: 'btn'
|
2019-07-17 22:18:48 +00:00
|
|
|
- if design.license
|
|
|
|
= link_to t('.design.license'), design.license,
|
2019-09-12 16:55:20 +00:00
|
|
|
target: '_blank', class: 'btn'
|
2019-08-01 18:15:31 +00:00
|
|
|
%hr/
|
|
|
|
|
2020-03-31 21:40:21 +00:00
|
|
|
.form-group.licenses
|
2019-07-20 00:33:10 +00:00
|
|
|
%h2= t('.licencia.title')
|
|
|
|
%p.lead= t('.help.licencia')
|
2020-03-31 21:40:21 +00:00
|
|
|
- Licencia.all.find_each do |licencia|
|
|
|
|
.row.license
|
2019-07-20 00:33:10 +00:00
|
|
|
.col
|
2020-03-31 21:40:21 +00:00
|
|
|
.media.mt-1
|
|
|
|
= image_tag licencia.icons, alt: licencia.name, class: 'mr-3 mt-4'
|
|
|
|
.media-body
|
|
|
|
.custom-control.custom-radio
|
|
|
|
= f.radio_button :licencia_id, licencia.id,
|
|
|
|
checked: licencia.id == site.licencia_id,
|
|
|
|
required: true, class: 'custom-control-input'
|
|
|
|
= f.label "licencia_id_#{licencia.id}", class: 'custom-control-label' do
|
|
|
|
= licencia.name
|
|
|
|
= sanitize_markdown licencia.description,
|
|
|
|
tags: %w[p a strong em ul ol li h1 h2 h3 h4 h5 h6]
|
|
|
|
|
|
|
|
= link_to t('.licencia.url'), licencia.url,
|
|
|
|
target: '_blank', class: 'btn'
|
2019-07-20 00:33:10 +00:00
|
|
|
|
|
|
|
%hr/
|
|
|
|
|
2019-08-01 18:15:31 +00:00
|
|
|
.form-group
|
|
|
|
%h2= t('.privacidad.title')
|
|
|
|
%p.lead= sanitize_markdown t('.help.privacidad'), tags: %w[a]
|
|
|
|
|
|
|
|
%hr/
|
|
|
|
|
2020-02-19 21:48:22 +00:00
|
|
|
- if site.persisted?
|
2020-02-18 18:15:02 +00:00
|
|
|
.form-group
|
|
|
|
%h2= t('.colaboracion_anonima.title')
|
|
|
|
%p.lead= t('.colaboracion_anonima.help')
|
|
|
|
|
|
|
|
.custom-control.custom-switch
|
|
|
|
= f.check_box :colaboracion_anonima, class: 'custom-control-input'
|
|
|
|
= f.label :colaboracion_anonima, class: 'custom-control-label'
|
|
|
|
|
2020-02-11 17:41:57 +00:00
|
|
|
.form-group
|
|
|
|
%h2= t('.deploys.title')
|
|
|
|
%p.lead= t('.help.deploys')
|
|
|
|
|
|
|
|
= f.fields_for :deploys do |deploy|
|
|
|
|
= render "deploys/#{deploy.object.type.underscore}",
|
|
|
|
deploy: deploy, site: site
|
2020-02-19 21:48:22 +00:00
|
|
|
- else
|
|
|
|
= f.fields_for :deploys do |deploy|
|
|
|
|
- next unless deploy.object.is_a? DeployLocal
|
|
|
|
|
|
|
|
= deploy.hidden_field :type
|
2019-07-25 18:51:32 +00:00
|
|
|
|
2019-07-13 00:20:36 +00:00
|
|
|
.form-group
|
2019-09-12 16:55:20 +00:00
|
|
|
= f.submit submit, class: 'btn btn-lg btn-block'
|