5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2024-11-22 09:56:21 +00:00

feat: no mostrar el campo borrador a les invitades #17343

This commit is contained in:
f 2024-09-06 16:11:20 -03:00
parent 78f757d429
commit fc39a780ff
No known key found for this signature in database

View file

@ -1,12 +1,16 @@
.form-check -# TODO: convertir los atributos draft a un tipo
= hidden_field_tag "#{base}[#{attribute}]", '0', id: nil - if attribute == :draft && site.invitade?(current_usuarie)
.custom-control.custom-switch -# Nada
= check_box_tag "#{base}[#{attribute}]", '1', metadata.value, - else
class: "custom-control-input #{invalid(post, attribute)}", .form-check
aria: { describedby: id_for_help(attribute) }, = hidden_field_tag "#{base}[#{attribute}]", '0', id: nil
autofocus: autofocus .custom-control.custom-switch
= label_tag "#{base}_#{attribute}", post_label_t(attribute, post: post), = check_box_tag "#{base}[#{attribute}]", '1', metadata.value,
class: 'custom-control-label' class: "custom-control-input #{invalid(post, attribute)}",
aria: { describedby: id_for_help(attribute) },
autofocus: autofocus
= label_tag "#{base}_#{attribute}", post_label_t(attribute, post: post),
class: 'custom-control-label'
= render 'posts/attribute_feedback', = render 'posts/attribute_feedback',
post: post, attribute: attribute, metadata: metadata post: post, attribute: attribute, metadata: metadata