##// END OF EJS Templates
use canning hook in dependent...
use canning hook in dependent allows the dependency function to be called even before the real task arguments are unpacked.

File last commit:

r9265:45c3a2ef
r9986:b70b5db9
Show More
logout.html
40 lines | 782 B | text/html | HtmlLexer
{% extends "page.html" %}
{% block stylesheet %}
<link rel="stylesheet" href="{{static_url("css/logout.css") }}" type="text/css"/>
{% endblock %}
{% 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("js/logoutmain.js") }}" type="text/javascript" charset="utf-8"></script>
{% endblock %}