##// END OF EJS Templates
Updating fabfile and templates for global style.min.css.
Updating fabfile and templates for global style.min.css.

File last commit:

r10716:6e2935fc
r10716:6e2935fc
Show More
logout.html
34 lines | 664 B | text/html | HtmlLexer
{% extends "page.html" %}
{% block login_widget %}
{% endblock %}
{% block site %}
<div id="ipython-main-app">
{% if message %}
{% for key in message %}
<div class="message {{key}}">
{{message[key]}}
</div>
{% endfor %}
{% endif %}
{% if read_only or not login_available %}
Proceed to the <a href="{{base_project_url}}">dashboard</a>.
{% else %}
Proceed to the <a href="{{base_project_url}}login">login page</a>.
{% endif %}
<div/>
{% endblock %}
{% block script %}
<script src="{{static_url("auth/js/logoutmain.js") }}" type="text/javascript" charset="utf-8"></script>
{% endblock %}