{% extends "application/base_application.html" %} {% block title %}{{ block.super }} - {% trans "Application" %} "{{ application.title }}"{% endblock %} {% load tags %} {% block content %}

{% trans "Application" %} {% if application.number != None %} #{{ application.number }} {% else %} [no number] {% endif %}

{{ application.title }}

{{ application.text|linebreaks }}

{% trans "Reason" %}:

{% if application.reason %} {{ application.reason|linebreaks }} {% else %} - {% endif %} {% if application.versions|length > 1 %}

{% trans "Revisions" %}:

{% for revision in application.versions %} {% endfor %}
# {% trans "Time" %} {% trans "Title" %} {% trans "Text" %} {% trans "Reason" %}
{{ revision.aid }} {{ revision.time }} {% ifchanged %} {{ revision.title }} {% else %} [{% trans "unchanged" %}] {% endifchanged %} {% ifchanged %} {{ revision.text|linebreaks }} {% else %} [{% trans "unchanged" %}] {% endifchanged %} {% ifchanged %} {{ revision.reason|linebreaks }} {% else %} [{% trans "unchanged" %}] {% endifchanged %}
{% endif %} {% if perms.application.can_manage_application %}

{% trans "Log" %}:

{{ application.log|linebreaks }} {% endif %}
{% endblock %}