Maketank Theme migration
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
2024-01-30 13:52:59 +01:00
parent f2643ac887
commit 53a6485a6e
413 changed files with 6836 additions and 1985 deletions

View File

@@ -0,0 +1,16 @@
{% 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 %}