{% extends 'base.html' %} {% block title %}Zarządzanie dostępem do list{% endblock %} {% block content %}

🔐{% if list_id %} Dostęp do listy #{{ list_id }}{% else %} Zarządzanie dostępem do list{% endif %}

{% if list_id %} Powrót do wszystkich list {% endif %} ← Powrót do panelu
{% include 'admin/_nav.html' %}
{% for username in all_usernames %}{% endfor %}
{% for l in lists %} {% endfor %} {% if lists|length == 0 %} {% endif %}
ID Nazwa listy Właściciel Utworzono Udostępnianie Uprawnienia
{{ l.id }} {{ l.title }} {% if l.owner %} 👤 @{{ l.owner.username }} ({{ l.owner.id }}) {% else %}-{% endif %} {{ l.created_at.strftime('%Y-%m-%d %H:%M') if l.created_at else '-' }} {% if l.share_token %} {% set share_url = url_for('shared_list', token=l.share_token, _external=True) %}
{{ share_url }}
{% if l.is_public %}Lista widoczna publicznie{% else %}Dostęp przez link / uprawnienia{% endif %}
{% else %}
Brak tokenu
{% endif %}
{% for u in permitted_by_list.get(l.id, []) %} {% endfor %} {% if permitted_by_list.get(l.id, [])|length == 0 %} Brak dodanych uprawnień. {% endif %}
Kliknij token, aby odebrać dostęp. Zmiana zapisuje się od razu.
Brak list do wyświetlenia
{% if not list_id %}
{% endif %} {% endblock %} {% block scripts %} {% endblock %}