{% extends "base.html" %} {% load i18n %} {% load translations %} {% load permissions %} {% block breadcrumbs %} {% if project %}
  • {{ project }}
  • {% if component %}
  • {{ component.name }}
  • {% if translation %}
  • {{ translation.language }}
  • {% 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 %} {% endif %} {% include "paginator.html" %} {% with object_list as last_changes %} {% include "last-changes-content.html" %} {% endwith %} {% include "paginator.html" %} {% endblock %}