sutty/app/views/posts/template_field/_text_area.haml
2018-07-23 16:15:34 -03:00

5 lines
242 B
Text

= 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)