{% extends 'base.html' %} {% block title %}Wszystkie paragony{% endblock %} {% block content %}

📸 {% if id == 'all' %}Wszystkie paragony{% else %}Paragony dla listy #{{ id }}{% endif %}

{% if id == 'all' %} Rozmiar plików tej strony: {% else %} Rozmiar plików listy #{{ id }}: {% endif %} {% if page_filesize >= 1024*1024 %} {{ (page_filesize / 1024 / 1024) | round(2) }} MB {% else %} {{ (page_filesize / 1024) | round(1) }} kB {% endif %} {% if not (id != 'all' and (id|string).isdigit()) %} | Łącznie: {% if total_filesize >= 1024*1024 %} {{ (total_filesize / 1024 / 1024) | round(2) }} MB {% else %} {{ (total_filesize / 1024) | round(1) }} kB {% endif %} {% endif %}

{% if id is string and id.isdigit() and id|int > 0 %} Pokaż wszystkie paragony {% else %} Przelicz rozmiary plików {% endif %} ← Powrót do panelu
{% include 'admin/_nav.html' %}
{% for r in receipts %}
📄 {{ r.filename }}
📅 {{ r.uploaded_at.strftime('%Y-%m-%d %H:%M') }}
👤 {{ r.uploaded_by_user.username if r.uploaded_by_user else "?" }}
💾 {% if r.filesize and r.filesize >= 1024 * 1024 %} {{ (r.filesize / 1024 / 1024) | round(2) }} MB {% elif r.filesize %} {{ (r.filesize / 1024) | round(1) }} kB {% else %} Brak danych {% endif %}
{% endfor %}
{% if not receipts %} {% endif %}
{% if id == 'all' %}
{% endif %} {% if orphan_files and request.path.endswith('/all') %}

Znalezione nieprzypisane pliki ({{ orphan_files_count }})

{% for f in orphan_files %}

{{ f }}

Brak powiązania z listą!
🗑 Usuń plik z serwera
{% endfor %}
{% endif %} {% block scripts %} {% endblock %} {% endblock %}