Files
firefly-iii/resources/views/form/non-selectable-amount.twig

12 lines
442 B
Twig
Raw Normal View History

2022-01-29 14:15:34 +01:00
<div class="{{ classes }}" id="{{ name }}_holder">
<label for="{{ options.id }}" class="col-sm-4 control-label">{{ label }}</label>
<div class="col-sm-8">
<div class="input-group">
<span class="input-group-addon non-selectable-currency-symbol">{{ selectedCurrency.symbol }}</span>
{{ Form.input('number', name, value, options) }}
</div>
2022-01-29 14:17:25 +01:00
{% include 'form.feedback' %}
2022-01-29 14:15:34 +01:00
</div>
</div>