22 lines
724 B
Twig
22 lines
724 B
Twig
{% extends "@AdminLTE/layout/form-theme.html.twig" %}
|
|
|
|
{# Adds the help icon, including a link to the documentation #}
|
|
{% block form_label %}
|
|
{% if form.vars.docu_chapter is defined and form.vars.docu_chapter is not empty %}
|
|
<a href="{{ form.vars.docu_chapter|docu_link }}" target="_blank"><i class="{{ 'help'|icon }}"></i></a>
|
|
{% endif %}
|
|
{{ parent() }}
|
|
{% endblock form_label %}
|
|
|
|
{% block daterange_widget %}
|
|
<div class="input-group">
|
|
<div class="input-group-addon">
|
|
<i class="far fa-calendar-alt"></i>
|
|
</div>
|
|
|
|
{% set attr = attr|merge({'data-daterangepickerenable':'on'}) %}
|
|
|
|
{{ block('form_widget_simple') }}
|
|
</div>
|
|
{% endblock daterange_widget %}
|