{% if item.type in ['IntegerField', 'DecimalField', 'FloatField'] %}
{{ item.label(class=theme.form.integer_label_class, style=theme.form.integer_label_style) }}
{% if item.errors %}
{% include 'form/formError.html' %}
{% else %}
{{ item(class=theme.form.integer_class, style=theme.form.integer_style) }}
{% endif %}
{% endif %}