{% extends "base.html" %} {% load i18n %} {% load translations %} {% load permissions %} {% load crispy_forms_tags %} {% load icons %} {% block breadcrumbs %} {% if path_object %} {% path_object_breadcrumbs path_object %}
  • {% trans "Changes" %}
  • {% else %}
  • {% trans "Changes" %}
  • {% endif %}
    {% if debug %} {% if path_object %} {% icon "bell.svg" %} {% else %} {% icon "bell.svg" %} {% endif %} {% endif %} {% perm 'change.download' path_object as user_can_download_changes %} {% if user_can_download_changes %} {% if path_object %} {% icon "download.svg" %} {% else %} {% icon "download.svg" %} {% endif %} {% endif %} {% icon "rss.svg" %}
    {% endblock %} {% block content %} {% if form.is_valid %} {% include "paginator.html" %} {% include "last-changes-content.html" with last_changes=object_list %} {% include "paginator.html" %} {% endif %}

    {% trans "Search" %}

    {{ form|crispy }}
    {% endblock %}