17 lines
456 B
Twig
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 %}
|