Files
Froxlor/templates/Froxlor/user/form-datatable.html.twig
Michael Kaufmann 5afe5a8c46 minor bugfixes for data export / UI
Signed-off-by: Michael Kaufmann <d00p@froxlor.org>
2023-06-07 11:49:57 +02: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.customerhasongoingexportjob') %}
{% include 'Froxlor/misc/alertbox.html.twig' %}
</div>
{% import "Froxlor/table/table.html.twig" as table %}
{{ table.table(tabledata) }}
{% endif %}
{{ parent() }}
{% endblock %}