{% extends "./alter_common.html" %} {% comment %} # Copyright (C) 2025 The Software Heritage developers # See the AUTHORS file at the top-level directory of this distribution # License: GNU Affero General Public License version 3, or any later version # See top-level LICENSE file for more information {% endcomment %} {% load alter_extras %} {% block page_title %} {% translate "Alteration requests administration" %} {% endblock page_title %} {% block navbar-content %}

{% translate "Alteration requests administration" %}

{% endblock navbar-content %} {% block content %}
{% bootstrap_field form.query placeholder="Search" show_label=False success_css_class="" %}
{% bootstrap_field form.status show_label=False success_css_class="" %}
{% for alteration in page.object_list %} {% empty %} {% endfor %}
{% translate "Status" %} {% translate "Demand" %} {% translate "Created" %} {% translate "Updated" %} {% translate "Origins" %}
{{ alteration.status|status_badge:alteration.get_status_display }} {{ alteration }}
    {% for origin in alteration.origins.all %}
  • {{ origin }}
  • {% endfor %}
{{ alteration.created_at|date:"SHORT_DATE_FORMAT" }} {{ alteration.updated_at|date:"SHORT_DATE_FORMAT" }}
{% translate "nothing matches" %}
{% bootstrap_pagination page extra=request.GET.urlencode %}
{% endblock content %}