{% if current_user.is_superadmin() and templates %}
🌐 Globale Vorlagen
|
Name |
Kategorie |
Erstellt |
Aktionen |
{% for m in templates %}
| ⠿ |
{{ m.icon }} {{ m.name }} |
{{ m.kategorie }} |
{{ m.created_at.strftime('%d.%m.%Y') if m.created_at else '' }} |
Bearbeiten
Builder
|
{% endfor %}
{% endif %}
{% if current_user.is_superadmin() %}
🏢 Alle Firmen-Module
{% else %}
🏢 Meine Module
{% endif %}
{% if not current_user.is_superadmin() and templates %}
Vorlagen verfügbar:
{% for t in templates %}
{{ t.icon }} {{ t.name }}
{% endfor %}
{% endif %}
|
Name |
Kategorie |
Firma |
{% if current_user.is_superadmin() %}Vorlage | {% endif %}
Aktiv |
Aktionen |
{% for m in company_modules %}
| ⠿ |
{{ m.icon }} {{ m.name }} |
{{ m.kategorie }} |
{{ m.company.name if m.company else '—' }} |
{% if current_user.is_superadmin() %}
{% if m.original_template_id %}
kopiert
{% else %}
eigenes
{% endif %}
|
{% endif %}
{{ 'Aktiv' if m.is_active else 'Inaktiv' }}
|
{% if current_user.is_superadmin() or (current_user.is_firmadmin() and m.company_id == current_user.company_id) %}
Bearbeiten
Builder
{% if current_user.is_superadmin() %}
{% endif %}
{% endif %}
|
{% else %}
| Keine Module vorhanden. |
{% endfor %}
{% endblock %}