mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-12-12 01:42:32 +00:00
15 lines
570 B
Twig
15 lines
570 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') }}
|
|
</div>
|
|
{% include 'form.help' %}
|
|
{% include 'form.feedback' %}
|
|
</div>
|
|
</div>
|