sutty/app/views/sites/_form.haml

100 lines
3.1 KiB
Plaintext
Raw Normal View History

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
%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')
.row
-# Demasiado complejo para un f.collection_radio_buttons
- Design.all.each do |design|
.col
%h3
= f.radio_button :design_id, design.id,
checked: design.id == site.design_id,
disabled: design.disabled,
required: true
2019-07-17 22:18:48 +00:00
= f.label "design_id_#{design.id}", design.name
= sanitize_markdown design.description,
tags: %w[p a strong em]
.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/
2019-07-20 00:33:10 +00:00
.form-group
%h2= t('.licencia.title')
%p.lead= t('.help.licencia')
- Licencia.all.each do |licencia|
.row
.col
%h3
= f.radio_button :licencia_id, licencia.id,
checked: licencia.id == site.licencia_id,
required: true
2019-07-20 00:33:10 +00:00
= f.label "licencia_id_#{licencia.id}" do
= image_tag licencia.icons, alt: licencia.name
= licencia.name
= sanitize_markdown licencia.description,
tags: %w[p a strong em ul ol li h1 h2 h3 h4 h5 h6]
.btn-group{ role: 'group', 'aria-label': t('.licencia.actions') }
= link_to t('.licencia.url'), licencia.url,
2019-09-12 16:55:20 +00:00
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/
.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
%hr/
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'