##// END OF EJS Templates
Backport PR #4738: don't inject help into user_ns...
Backport PR #4738: don't inject help into user_ns because it's in builtins. I presume this was for old Pythons, but it doesn't seem necessary for ≥ 2.7. Prompted because the injection fails on 3.4, causing the warning: WARNING: help() not available - check site.py but help actually works just fine.

File last commit:

r11644:961067ee
r13966:56c2565a
Show More
logout.html
38 lines | 810 B | text/html | HtmlLexer
{% extends "page.html" %}
{% block stylesheet %}
{{super()}}
<link rel="stylesheet" href="{{ static_url("auth/css/override.css") }}" type="text/css" />
{% endblock %}
{% block login_widget %}
{% endblock %}
{% block site %}
<div id="ipython-main-app" class="container">
{% if message %}
{% for key in message %}
<div class="message {{key}}">
{{message[key]}}
</div>
{% endfor %}
{% endif %}
{% if 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 %}