{% extends "base.html" %} {% load i18n %} {% load translations %} {% load permissions %} {% load crispy_forms_tags %} {% load icons %} {% block breadcrumbs %} {% if project %}
  • {{ project }}
  • {% if component %} {% include "snippets/component-breadcrumb.html" with object=component %} {% if translation %} {% include "snippets/translation-breadcrumb.html" with object=translation %} {% endif %} {% endif %} {% elif changes_user %}
  • {{ changes_user.profile.get_user_name }}
  • {% elif language %}
  • {% trans "Languages" %}
  • {{ language }}
  • {% endif %}
  • {% trans "Changes" %}
  • {% endblock %} {% block content %} {% perm 'change.download' project as user_can_download_changes %} {% if user_can_download_changes or changes_rss %}
    {% if user_can_download_changes %} {% icon "download.svg" %} {% endif %} {% if changes_rss %} {% icon "rss.svg" %} {% endif %}
    {% endif %} {% if form.is_valid %} {% include "last-changes-content.html" with last_changes=object_list %} {% include "paginator.html" %} {% endif %}
    {% if changes_user %} {% endif %} {% if component %} {% endif %}

    {% trans "Search" %}

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