Add input type TextAreaField

adds a possibility to add longer texts in the style of
rollerverbrauch
This commit is contained in:
Joachim Lusiardi 2016-11-01 11:16:13 +01:00
parent b8a6f69090
commit 43fa41aace
1 changed files with 2 additions and 0 deletions

View File

@ -56,6 +56,8 @@
<input class="form-control" type="number" id="{{ field.id }}" name="{{ field.id }}" value="{{ field.default|none_filter }}" step="1" aria-describedby="{{ field.id }}_help" />
{% elif field.type == 'DecimalField' %}
<input class="form-control" type="number" id="{{ field.id }}" name="{{ field.id }}" value="{{ field.default|none_filter }}" step="{{ 1 / 10 ** field.places}}" aria-describedby="{{ field.id }}_help" />
{% elif field.type == 'TextAreaField' %}
<textarea class="form-control" id="{{ field.id }}" name="{{ field.id }}">{{ field.default|none_filter }}</textarea>
{% else %}
{{ field(**kwargs)|safe }}
{% endif %}