migrate customer::backups

Signed-off-by: Michael Kaufmann <d00p@froxlor.org>
This commit is contained in:
Michael Kaufmann
2022-03-27 13:19:26 +02:00
parent 943301e908
commit 51ba6c757e
3 changed files with 90 additions and 22 deletions

View File

@@ -0,0 +1,16 @@
{% extends "Froxlor/user/form.html.twig" %}
{% block content %}
{% if tabledata is not empty and tabledata 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 %}