{# SPDX-License-Identifier: AGPL-3.0-or-later #} {# SPDX-FileCopyrightText: 2026 JWP Consulting GK #} {% extends "internal/internal_links_base.html" %} {# public facing overview of page resources #} {% load i18n %} {% partialdef resource %}
    {% for resource in resources %} {% with image=resource.image_instance %} {% if image %}
  1. {{ image.name }} {% if image.small_url %} {% trans 'Small' %} {% endif %} {% trans 'Full' %}
  2. {% else %} {# this should never be hit #} MISSING DATA {% endif %} {% endwith %} {% endfor %}
{% endpartialdef %} {% block content %} {# TODO improve phrasing #} {% blocktrans %} This list shows all page resources grouped by page. {% endblocktrans %} {% if pages %}
    {% for page in pages %} {% with resources=page.pageresource_set.all %} {% if resources %}
  1. {{ page.title }} {% partial resource %}
  2. {% endif %} {% endwith %} {% endfor %}
{% endif %} {% endblock content %}