Files
Froxlor/templates/Maketank/user/form-datatable.html.twig
Udo Waechter 53a6485a6e
Some checks failed
continuous-integration/drone/push Build is failing
Maketank Theme migration
2024-01-30 13:52:59 +01:00

17 lines
456 B
Twig

{% extends "Froxlor/user/form.html.twig" %}
{% block content %}
{% if tabledata.table.tr is not empty and tabledata.table.tr is iterable %}
<div class="row mb-2">
{% set type = 'warning' %}
{% set alert_msg = lng('error.customerhasongoingbackupjob') %}
{% include 'Froxlor/misc/alertbox.html.twig' %}
</div>
{% import "Froxlor/table/table.html.twig" as table %}
{{ table.table(tabledata) }}
{% endif %}
{{ parent() }}
{% endblock %}