##// END OF EJS Templates
Redirect to front page upon read-only logout.
Stefan van der Walt -
Show More
@@ -1,5 +1,9 b''
1 {% extends layout.html %}
1 {% extends layout.html %}
2
2
3 {% block content_panel %}
3 {% block content_panel %}
4 Proceed to the <a href="/login">login page</a>.
4 {% if current_user and current_user != 'anonymous' %}
5 Proceed to the <a href="/">front page</a>.
6 {% else %}
7 Proceed to the <a href="/login">login page</a>.
8 {% end %}
5 {% end %}
9 {% end %}
General Comments 0
You need to be logged in to leave comments. Login now