##// 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
{% extends layout.html %}
{% block content_panel %}
{% 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 %}
{% end %}