X-Git-Url: https://git.mdrn.pl/cas.git/blobdiff_plain/a7d807af1096c152baf5c32f4f4b3f1a26ea2c76..2c9debf2812dfbd4ff59348559ae57cd49858e8b:/src/cas/templates/cas/logout.html diff --git a/src/cas/templates/cas/logout.html b/src/cas/templates/cas/logout.html index d2a4009..5a38a42 100644 --- a/src/cas/templates/cas/logout.html +++ b/src/cas/templates/cas/logout.html @@ -1,12 +1,24 @@ -{% extends "cas_base.html" %} - +{% extends "base.html" %} +{% load i18n %} + {% block title %} Logged out {% endblock %} - + {% block content %} -

Logged out

- -

You have successfully logged out. To ensure that you are logged out of all services, please close your browser.

- {% if url %}

Click here to return to {{ url }}

{% endif %} -{% endblock %} \ No newline at end of file + +
+ +

{% trans "Logged out" %}

+ +

{% blocktrans %}You have successfully logged out. To ensure that you are logged out of all services, please close your browser.{% endblocktrans %}

+ + {% if url %} +

{% blocktrans %}You can return to service you came from: {{ url }}{% endblocktrans %}

+ {% endif %} + + {% url 'cas_login' as login_url %} +

{% blocktrans %}You can also login again{% endblocktrans %}

+ +
+{% endblock %}