summaryrefslogtreecommitdiff
path: root/ishtar_common/templates/ishtar/changelog.html
diff options
context:
space:
mode:
authorÉtienne Loks <etienne.loks@iggdrasil.net>2023-04-06 18:36:47 +0200
committerÉtienne Loks <etienne.loks@iggdrasil.net>2023-04-17 15:47:16 +0200
commit71a256dc52ed3391638dcf9669cf57d75475d326 (patch)
tree422181b331fcd809a6c4a4316d76d960a248f4d5 /ishtar_common/templates/ishtar/changelog.html
parent59d92f268b2a002b006250258bdc54880e080013 (diff)
downloadIshtar-71a256dc52ed3391638dcf9669cf57d75475d326.tar.bz2
Ishtar-71a256dc52ed3391638dcf9669cf57d75475d326.zip
Display of a changelog with alert display when updates are made
Diffstat (limited to 'ishtar_common/templates/ishtar/changelog.html')
-rw-r--r--ishtar_common/templates/ishtar/changelog.html18
1 files changed, 18 insertions, 0 deletions
diff --git a/ishtar_common/templates/ishtar/changelog.html b/ishtar_common/templates/ishtar/changelog.html
new file mode 100644
index 000000000..e8fb94ea8
--- /dev/null
+++ b/ishtar_common/templates/ishtar/changelog.html
@@ -0,0 +1,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 %}