mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-02-20 11:48:27 -06:00
18 lines
626 B
Twig
18 lines
626 B
Twig
<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">
|
|
<div class="input-group-addon">
|
|
<span class="fa fa-calendar"></span>
|
|
</div>
|
|
{{ Html.input('date', name, value).id(options.id).class('form-control').attribute('autocomplete','off').attribute('spellcheck','false')
|
|
.attribute('min', options.min)
|
|
}}
|
|
</div>
|
|
{% include 'form.help' %}
|
|
{% include 'form.feedback' %}
|
|
</div>
|
|
</div>
|