Reorder templates
This commit is contained in:
parent
53b496546d
commit
7b40ee1ca4
99 changed files with 1 additions and 37 deletions
12
apps/note/templates/note/amount_input.html
Normal file
12
apps/note/templates/note/amount_input.html
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
<div class="input-group">
|
||||
<input class="form-control mx-auto d-block" type="number" {% if not widget.attrs.negative %}min="0"{% endif %} step="0.01"
|
||||
{% if widget.value != None and widget.value != "" %}value="{{ widget.value }}"{% endif %}
|
||||
name="{{ widget.name }}"
|
||||
{% for name, value in widget.attrs.items %}
|
||||
{% ifnotequal value False %}{{ name }}{% ifnotequal value True %}="{{ value|stringformat:'s' }}"{% endifnotequal %}{% endifnotequal %}
|
||||
{% endfor %}>
|
||||
<div class="input-group-append">
|
||||
<span class="input-group-text">€</span>
|
||||
</div>
|
||||
<p id="amount-required" class="invalid-feedback"></p>
|
||||
</div>
|
||||
Loading…
Add table
Add a link
Reference in a new issue