##// END OF EJS Templates
Redirect to front page upon read-only logout.
Redirect to front page upon read-only logout.

File last commit:

r5719:84638410
r5719:84638410
Show More
logout.html
9 lines | 243 B | text/html | HtmlLexer
Stefan van der Walt
Add logout button.
r5325 {% extends layout.html %}
{% block content_panel %}
Stefan van der Walt
Redirect to front page upon read-only logout.
r5719 {% if current_user and current_user != 'anonymous' %}
Proceed to the <a href="/">front page</a>.
{% else %}
Proceed to the <a href="/login">login page</a>.
{% end %}
Stefan van der Walt
Add logout button.
r5325 {% end %}