mail & filetemplates listing/forms

Signed-off-by: Michael Kaufmann <d00p@froxlor.org>
This commit is contained in:
Michael Kaufmann
2022-03-06 09:43:06 +01:00
parent 54ce296018
commit a3a33c0da4
8 changed files with 241 additions and 33 deletions

View File

@@ -14,7 +14,7 @@
</p>
{% endif %}
{% if redirect_link %}
<p class="mt-1">
<p class="mt-1 pb-3">
<a href="{{ redirect_link|raw }}" class="btn btn-{{ btntype }}">
{% if type == 'danger' %}
{{ lng('panel.back') }}

View File

@@ -0,0 +1,11 @@
{% extends "Froxlor/user/table.html.twig" %}
{% block content %}
{% set listing = maillisting %}
{% set actions_links = mail_actions_links %}
{{ parent() }}
{% set listing = filelisting %}
{% set actions_links = file_actions_links %}
{{ parent() }}
{% endblock %}