5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2024-07-02 14:56:07 +00:00
panel/app/views/posts/template_field/_text_area.haml
2018-07-23 16:15:34 -03:00

6 lines
242 B
Plaintext

= text_area_tag field_name_for_post_as_string(name), value,
class: 'form-control', required: template.required?,
maxlength: template.max > 0 ? template.max : nil
- if template.max > 0
%small= t('posts.text_area.max', max: template.max)