This commit is contained in:
Mateusz Gruszczyński
2025-09-14 13:30:13 +02:00
parent 2a67217008
commit 8e96702d8e

View File

@@ -3,10 +3,10 @@
{% block content %}
<div class="d-flex justify-content-between align-items-center flex-wrap mb-4">
<h2 class="mb-2">🔐 Zarządzanie dostępem do list</h2>
<h2 class="mb-2">🔐{% if list_id %} Zarządzanie dostępem do list{% else %}Zarządzanie dostępem #{{ list_id }}{% endif %}</h2>
<div>
{% if not list_id %}
<a href="{{ url_for('all_lists') }}" class="btn btn-primary ms-2">Powrót do wszystkich list</a>
{% if list_id %}
<a href="{{ url_for('all_lists') }}" class="btn btn-outline-light me-2">Powrót do wszystkich list</a>
{% endif %}
<a href="{{ url_for('admin_panel') }}" class="btn btn-outline-secondary">← Powrót do panelu</a>
</div>