diff --git a/django/website/hid/templates/hid/dashboard.html b/django/website/hid/templates/hid/dashboard.html index 3354687ec76ce45d13836bd7402f1e119a1bd18c..0e4bffdedd1e501f9d1bfa5d2c84dc7b7694ea5d 100644 --- a/django/website/hid/templates/hid/dashboard.html +++ b/django/website/hid/templates/hid/dashboard.html @@ -3,6 +3,6 @@ {% block maincontent %} <p>{% trans "This is the dashboard page." %}</p> -<p><a href="{% url "logout" %}">{% trans "Log out" %}</a></p> +<p><a href="{% url "logout" %}?next={% url 'login' %}">{% trans "Log out" %}</a></p> -{% endblock maincontent %} \ No newline at end of file +{% endblock maincontent %} diff --git a/django/website/users/templates/registration/logged_out.html b/django/website/users/templates/registration/logged_out.html deleted file mode 100644 index 0b36bb04b8ba610cdfbd7d2188406182a2eba14e..0000000000000000000000000000000000000000 --- a/django/website/users/templates/registration/logged_out.html +++ /dev/null @@ -1,11 +0,0 @@ -{% extends "base.html" %} -{% load i18n %} - - -{% block maincontent %} -<h1>{% trans "Logged out" %}</h1> -<p> - You are logged out. - <a href="{% url "login" %}">{% trans "Log in again." %}</a> -</p> -{% endblock maincontent %} \ No newline at end of file