Clean-up templates

This commit is contained in:
Aarni Halinen
2022-08-03 22:57:19 +03:00
parent f51d71e045
commit 30f59c36fb
24 changed files with 28 additions and 419 deletions
+1 -1
View File
@@ -35,6 +35,6 @@
<body>
{% block content %}
{% endblock content %}
{% include "webapp/footer.html" %}
{% include "footer.html" %}
</body>
</html>
+1 -1
View File
@@ -91,6 +91,6 @@
</div>
</div>
{% include "webapp/footer.html" %}
{% include "footer.html" %}
</body>
</html>
+18
View File
@@ -0,0 +1,18 @@
{% extends "members/base.html" %}
{% load static %}
{% load i18n %}
{% block content %}
<div>
<div>
<h3>{% trans "Error" %}</h3>
</div>
<div class="alert alert-danger">
{{ error|safe }}
</div>
<div>
<button onclick="window.history.back();" class="btn btn-primary">{% trans "Back" %}</button>
</div>
</div>
{% endblock content %}