sutty/app/views/posts/template_field/_number.haml
f fdb79e3469
porcentaje de financiacion
TODO convertir esto en una clase general
2019-01-11 16:12:31 -03:00

9 lines
265 B
Plaintext

= number_field_tag field_name_for_post_as_string(name),
value,
class: 'form-control',
required: template.required?,
max: template.max > 0 ? template.max : nil,
min: template.min
- if template.max > 0
%small= raw t('posts.number.max', max: template.max)