##// END OF EJS Templates
Merge pull request #1161 from ipython/loadpy-fixes...
Merge pull request #1161 from ipython/loadpy-fixes Allow %loadpy to load remote URLs that don't end in .py. Also strip encoding declarations from loaded files, which are invalid for interactively defined strings.

File last commit:

r5723:8326cad4
r5753:3deb45e8 merge
Show More
logout.html
28 lines | 495 B | text/html | HtmlLexer
{% extends layout.html %}
{% block content_panel %}
<ul>
{% if read_only or not login_available %}
Proceed to the <a href="/">list of notebooks</a>.</li>
{% else %}
Proceed to the <a href="/login">login page</a>.</li>
{% end %}
</ul>
{% end %}
{% block login_widget %}
{% end %}
{% block script %}
<script type="text/javascript">
$(document).ready(function() {
IPython.login_widget = new IPython.LoginWidget('span#login_widget');
});
</script>
{% end %}