summaryrefslogtreecommitdiff
path: root/ishtar_common/templates/ishtar/changelog.html
blob: e8fb94ea87427d9327c134aa6c196f4bd1dadde1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{% extends "base.html" %}
{% load i18n %}
{% block content %}
<div class="container">
    <h1>{% trans "Changelog" %}</h1>
    {% if next %}
    <div class="text-center">
        <a class="btn btn-info"  href="{% url 'changelog' next %}">{% trans "Next" %}</a>
    </div>
    {% endif %}
    {{changelog|safe}}
    {% if previous %}
    <div class="text-center">
        <a class="btn btn-info" href="{% url 'changelog' previous %}">{% trans "Previous" %}</a>
    </div>
    {% endif %}
</div>
{% endblock %}