{# 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 %} This list shows all addresses that redirect to a page and that pages address. {% endblocktrans %}

{% if redirects %}
    {% for source, destination in redirects.items %}
  1. {% blocktrans %} {{ source }} redirects to {{ destination }} {% endblocktrans %}
  2. {% endfor %}
{% else %}

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

{% endif %} {% endblock content %}