{% extends "base.html" %} {% block title %}v{{ version.version }} of {{ app.name }}{% endblock %} {% block crumbs %} {% import "_app_crumbs.html" as app_crumbs with context %} {{ app_crumbs.nav(request=request, app=app) }} {% endblock %} {% block extra_head %} {% if html_changed %} {{ codemirror_assets|safe }} {% endif %} {% endblock %} {% block content %}

v{{ version.version }} of {{ app.name }}

Edit app View app

Created {% if previous %} compared with v{{ previous.version }} {% else %} compared with an empty file {% endif %}

{% if revision_changes %}

Changes

{% for change in revision_changes %}
{{ change.label }}
Before {{ change.before.text }} After {{ change.after.text }}
{% endfor %}
{% endif %} {% if html_changed %}

HTML diff

{%- for line in diff_lines -%}{{ line.text }}{%- endfor -%}

Full HTML

{% endif %} {% endblock %}