sutty/app/views/posts/attributes/_boolean.haml

10 lines
398 B
Plaintext
Raw Normal View History

2019-08-20 22:11:10 +00:00
.form-check{ class: invalid(post, attribute) }
= check_box_tag "post[#{attribute}", metadata.value, metadata.value,
class: 'form-check-input',
aria: { describedby: id_for_help(attribute) }
= label_tag "post_#{attribute}", post_label_t(attribute, post: post),
class: 'form-check-label'
= render 'posts/attribute_feedback',
post: post, attribute: attribute, metadata: metadata