{# SPDX-License-Identifier: AGPL-3.0-or-later #} {# SPDX-FileCopyrightText: 2026 JWP Consulting GK #} {% extends "internal/internal_links_base.html" %} {% load i18n %} {% block content %}

{# TODO improve phrasing #} {% blocktrans %} The following list shows all static files in your Koriander CMS website. {% endblocktrans %}

{% if static_files %}
    {% for static_file in static_files %}
  1. {{ static_file.path }} ({{ static_file.data|length|filesizeformat }})
  2. {% endfor %}
{% else %}

{% trans 'There are no static files at the moment.' %}

{% endif %} {% endblock content %}