##// END OF EJS Templates
Merge pull request #1621 from ivanov/clear-input-prompt-on-clear-all-output...
Merge pull request #1621 from ivanov/clear-input-prompt-on-clear-all-output clear In[] prompt numbers on "Clear All Output" For more version-control-friendly `.ipynb` files, this strips the `In[]` prompt numbers when doing a "Clear all output". This reduces the amount of noise in commit-to-commit diffs that would otherwise show the (highly variable) prompt number changes.

File last commit:

r6192:a53b1a9f
r6575:187d0090 merge
Show More
logout.html
40 lines | 707 B | text/html | HtmlLexer
{% extends page.html %}
{% block stylesheet %}
<link rel="stylesheet" href="{{static_url("css/logout.css") }}" type="text/css"/>
{% end %}
{% block login_widget %}
{% end %}
{% block site %}
<div id="main_app">
{% if message %}
{% for key in message %}
<div class="message {{key}}">
{{message[key]}}
</div>
{% end %}
{% end %}
{% if read_only or not login_available %}
Proceed to the <a href="/">dashboard</a>.
{% else %}
Proceed to the <a href="/login">login page</a>.
{% end %}
<div/>
{% end %}
{% block script %}
<script src="{{static_url("js/logoutmain.js") }}" type="text/javascript" charset="utf-8"></script>
{% end %}