##// END OF EJS Templates
replace "Yes, close all" button text with 'Quit'...
replace "Yes, close all" button text with 'Quit' The explanation is already in the body of the message, and the 'close all' is confusing for `%qtconsole` launched consoles, which don't halt their kernels.

File last commit:

r5673:aee2b316
r5716:05cbf58d
Show More
projectdashboard.html
36 lines | 1.0 KiB | text/html | HtmlLexer
Stefan van der Walt
Use template inheritance.
r5324 {% extends layout.html %}
{% block title %}
IPython Dashboard
{% end %}
{% block stylesheet %}
Stefan van der Walt
Add logout button.
r5325 <link rel="stylesheet" href="static/css/projectdashboard.css" type="text/css" />
{% end %}
{% block meta %}
<meta name="read_only" content="{{read_only}}"/>
{% end %}
{% block params %}
data-project={{project}}
data-base-project-url={{base_project_url}}
data-base-kernel-url={{base_kernel_url}}
Stefan van der Walt
Use template inheritance.
r5324 {% end %}
{% block content_panel %}
<div id="content_toolbar">
Matthias BUSSONNIER
unhide on not read-only instead of inverse
r5673 <span id="drag_info" class="hidden">Drag files onto the list to import notebooks.</span>
Stefan van der Walt
Use template inheritance.
r5324 <span id="notebooks_buttons">
Matthias BUSSONNIER
unhide on not read-only instead of inverse
r5673 <button id="new_notebook" class="hidden">New Notebook</button>
Stefan van der Walt
Use template inheritance.
r5324 </span>
Brian E. Granger
File upload/import working from notebook browser.
r4491 </div>
Stefan van der Walt
Use template inheritance.
r5324 <div id="notebook_list">
<div id="project_name"><h2>{{project}}</h2></div>
Brian E. Granger
Implemented basic notebook browser and fixed numerous bugs.
r4488 </div>
Stefan van der Walt
Use template inheritance.
r5324 {% end %}
Brian E. Granger
Implemented basic notebook browser and fixed numerous bugs.
r4488
Stefan van der Walt
Use template inheritance.
r5324 {% block script %}
Stefan van der Walt
Add logout button.
r5325 <script src="static/js/notebooklist.js" type="text/javascript" charset="utf-8"></script>
<script src="static/js/projectdashboardmain.js" type="text/javascript" charset="utf-8"></script>
Stefan van der Walt
Use template inheritance.
r5324 {% end %}