* added help for timesheet duration form field - fixes #138 * added label option to link to manual chapter * created docu chapter "timesheet" and added duration mode docu * allow field and form option "documentation" to link to chapters in the documentation
9 lines
361 B
Twig
9 lines
361 B
Twig
{% extends "@AvanzuAdminTheme/layout/form-theme.html.twig" %}
|
|
|
|
{% block form_label %}
|
|
{% if form.vars.documentation is defined and form.vars.documentation is not empty %}
|
|
<a href="{{ path('help_chapter', {'chapter': form.vars.documentation}) }}"><i class="fa fa-question-circle"></i></a>
|
|
{% endif %}
|
|
{{ parent() }}
|
|
{% endblock form_label %}
|