summaryrefslogtreecommitdiff
path: root/ishtar_common/templates/ishtar/changelog.html
blob: 1cc7a8b085e5a06170773969ee7f7015d9cdd1d6 (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 changelog">
    <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 %}