{% extends 'base.html' %} {% block title %}Wszystkie paragony{% endblock %} {% block content %}
{% 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 %}