5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2024-10-04 23:26:56 +00:00

fix: activarlo

This commit is contained in:
f 2023-03-29 15:51:10 -03:00
parent 169682c2db
commit 7246ba00f5

View file

@ -40,20 +40,19 @@
aria: { describedby: 'minimum-password-length' }, aria: { describedby: 'minimum-password-length' },
placeholder: t("#{password}_confirmation") placeholder: t("#{password}_confirmation")
- if params[:consent] .form-group
.form-group - Usuarie::CONSENT_FIELDS.each do |field|
- Usuarie::CONSENT_FIELDS.each do |field| - required = t(".#{field}.required", default: '').present?
- required = t(".#{field}.required", default: '').present? - id = "usuarie_#{field}"
- id = "usuarie_#{field}" - name = "usuarie[#{field}]"
- name = "usuarie[#{field}]" - content = t(".#{field}.label")
- content = t(".#{field}.label") - href = t(".#{field}.href", default: '')
- href = t(".#{field}.href", default: '') - help_content = t(".#{field}.help")
- help_content = t(".#{field}.help") = render 'bootstrap/custom_checkbox', id: id, name: name, content: content, required: required, value: "1" do
= render 'bootstrap/custom_checkbox', id: id, name: name, content: content, required: required, value: "1" do - if href.present?
- if href.present? = link_to help_content, href, target: '_blank', rel: 'noopener'
= link_to help_content, href, target: '_blank', rel: 'noopener' - else
- else = help_content
= help_content
.actions .actions
= f.submit t('.sign_up'), = f.submit t('.sign_up'),