##// END OF EJS Templates
Fixing styling issues with CellToolbar....
Fixing styling issues with CellToolbar. * Width of CellToolbar was off on Linux Chrome+Firefox. * Minor styling cleanups.

File last commit:

r8350:68d07e4c
r9142:38560081
Show More
projectdashboard.html
81 lines | 2.5 KiB | text/html | HtmlLexer
Cameron Bates
Refactor notebook to use Jinja2 instead of tornado templates
r8350 {% extends "page.html" %}
Stefan van der Walt
Use template inheritance.
r5324
Cameron Bates
Refactor notebook to use Jinja2 instead of tornado templates
r8350 {% block title %}IPython Dashboard{% endblock %}
Stefan van der Walt
Use template inheritance.
r5324
{% block stylesheet %}
Andrew Straw
use Tornado's handler.static_url() in templates
r6002 <link rel="stylesheet" href="{{static_url("css/projectdashboard.css") }}" type="text/css" />
Cameron Bates
Refactor notebook to use Jinja2 instead of tornado templates
r8350 <link rel="stylesheet" href="{{static_url("css/alternateuploadform.css") }}" type="text/css" />
{% endblock %}
Stefan van der Walt
Add logout button.
r5325
{% block params %}
Brian Granger
Major refactoring of notebook....
r6193
Stefan van der Walt
Add logout button.
r5325 data-project={{project}}
data-base-project-url={{base_project_url}}
data-base-kernel-url={{base_kernel_url}}
Brian Granger
Refactoring templates and top level js/css organization.
r6192 data-read-only={{read_only}}
Brian Granger
Major refactoring of notebook....
r6193
Cameron Bates
Refactor notebook to use Jinja2 instead of tornado templates
r8350 {% endblock %}
Stefan van der Walt
Use template inheritance.
r5324
Brian Granger
Major refactoring of notebook....
r6193
Brian Granger
Refactoring templates and top level js/css organization.
r6192 {% block site %}
<div id="main_app">
Brian Granger
Initial try at adding tabs to project dashboard.
r6194 <div id="tabs">
<ul>
<li><a href="#tab1">Notebooks</a></li>
<li><a href="#tab2">Clusters</a></li>
</ul>
<div id="tab1">
{% if logged_in or not read_only %}
Brian Granger
Draft of the cluster list UI....
r6195 <div id="notebook_toolbar">
Matthias BUSSONNIER
clean html, style logon form
r6840 <form id='alternate_upload' class='alternate_upload' >
Matthias BUSSONNIER
change upload sentense
r7106 <span id="drag_info" style="position:absolute" >
To import a notebook, drag the file onto the listing below or <strong>click here</strong>.
</span>
Matthias BUSSONNIER
multifile selection
r6839 <input type="file" name="datafile" class="fileinput" multiple='multiple'>
Matthias BUSSONNIER
alternate notebook upload methods...
r6838 </form>
Brian Granger
Draft of the cluster list UI....
r6195 <span id="notebook_buttons">
<button id="refresh_notebook_list" title="Refresh notebook list">Refresh</button>
<button id="new_notebook" title="Create new notebook">New Notebook</button>
Brian Granger
Initial try at adding tabs to project dashboard.
r6194 </span>
</div>
Cameron Bates
Refactor notebook to use Jinja2 instead of tornado templates
r8350 {% endif %}
Brian Granger
Initial try at adding tabs to project dashboard.
r6194
<div id="notebook_list">
<div id="project_name"><h2>{{project}}</h2></div>
</div>
Brian E. Granger
File upload/import working from notebook browser.
r4491 </div>
Brian Granger
Initial try at adding tabs to project dashboard.
r6194 <div id="tab2">
Brian Granger
Draft of the cluster list UI....
r6195
<div id="cluster_toolbar">
<span id="cluster_list_info">IPython parallel computing clusters</span>
<span id="cluster_buttons">
<button id="refresh_cluster_list" title="Refresh cluster list">Refresh</button>
</span>
</div>
<div id="cluster_list">
Brian Granger
Cluster management is now working....
r6197 <div id="cluster_header">
<span>profile</span>
<span>action</span>
Brian Granger
Chaging # of engines format in cluster list.
r6201 <span title="Enter the number of engines to start or empty for default"># of engines</span>
Brian Granger
Cluster management is now working....
r6197 <span>status</span>
</div>
Brian Granger
Draft of the cluster list UI....
r6195 </div>
Brian E. Granger
Implemented basic notebook browser and fixed numerous bugs.
r4488 </div>
Brian Granger
Initial try at adding tabs to project dashboard.
r6194 </div>
Brian Granger
Refactoring templates and top level js/css organization.
r6192
</div>
Cameron Bates
Refactor notebook to use Jinja2 instead of tornado templates
r8350 {% endblock %}
Brian E. Granger
Implemented basic notebook browser and fixed numerous bugs.
r4488
Stefan van der Walt
Use template inheritance.
r5324 {% block script %}
Andrew Straw
use Tornado's handler.static_url() in templates
r6002 <script src="{{static_url("js/notebooklist.js") }}" type="text/javascript" charset="utf-8"></script>
Brian Granger
Draft of the cluster list UI....
r6195 <script src="{{static_url("js/clusterlist.js") }}" type="text/javascript" charset="utf-8"></script>
Andrew Straw
use Tornado's handler.static_url() in templates
r6002 <script src="{{static_url("js/projectdashboardmain.js") }}" type="text/javascript" charset="utf-8"></script>
Cameron Bates
Refactor notebook to use Jinja2 instead of tornado templates
r8350 {% endblock %}