##// END OF EJS Templates
Fix style
Fix style

File last commit:

r11692:3e731bb6
r12932:7610cfda
Show More
tree.html
89 lines | 3.2 KiB | text/html | HtmlLexer
Brian E. Granger
More work on the less setup.
r10706 {% 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
Stefan van der Walt
Add logout button.
r5325
Brian E. Granger
Creating override.css for each page....
r10723 {% block stylesheet %}
{{super()}}
<link rel="stylesheet" href="{{ static_url("tree/css/override.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
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 %}
MinRK
ipython-main-app should be a bootstrap container
r10898 <div id="ipython-main-app" class="container">
Brian Granger
Refactoring templates and top level js/css organization.
r6192
MinRK
bootstrap base, auth
r10885 <div id="tabs" class="tabbable">
<ul class="nav nav-tabs" id="tabs">
MinRK
use named tabs in tree
r10928 <li class="active"><a href="#notebooks" data-toggle="tab">Notebooks</a></li>
<li><a href="#clusters" data-toggle="tab">Clusters</a></li>
Brian Granger
Initial try at adding tabs to project dashboard.
r6194 </ul>
MinRK
bootstrap base, auth
r10885 <div class="tab-content">
MinRK
use named tabs in tree
r10928 <div id="notebooks" class="tab-pane active">
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">
MinRK
bootstrap tree
r10891 <button id="refresh_notebook_list" title="Refresh notebook list" class="btn btn-small">Refresh</button>
<button id="new_notebook" title="Create new notebook" class="btn btn-small">New Notebook</button>
Brian Granger
Initial try at adding tabs to project dashboard.
r6194 </span>
</div>
MinRK
use row-fluid for tree_list
r10919 <div id="notebook_list">
MinRK
use row-fluid for cluster list
r10920 <div id="notebook_list_header" class="row-fluid list_header">
MinRK
use row-fluid for tree_list
r10919 <div id="project_name">
Bussonnier Matthias
Fix project path url in dashbord...
r9275 <ul class="breadcrumb">
{% for component in project_component %}
<li>{{component}} <span>/</span></li>
{% endfor %}
</ul>
MinRK
fight with bootstrap a little less in tree view
r10911 </div>
MinRK
use row-fluid for tree_list
r10919 </div>
</div>
Brian E. Granger
File upload/import working from notebook browser.
r4491 </div>
MinRK
bootstrap base, auth
r10885
MinRK
use named tabs in tree
r10928 <div id="clusters" class="tab-pane">
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">
MinRK
bootstrap tree
r10891 <button id="refresh_cluster_list" title="Refresh cluster list" class="btn btn-small">Refresh</button>
Brian Granger
Draft of the cluster list UI....
r6195 </span>
</div>
MinRK
use row-fluid for cluster list
r10920 <div id="cluster_list">
<div id="cluster_list_header" class="row-fluid list_header">
<span class="profile_col span4">profile</span>
<span class="status_col span3">status</span>
<span class="engines_col span3" title="Enter the number of engines to start or empty for default"># of engines</span>
<span class="action_col span2">action</span>
</div>
</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 %}
Matthias BUSSONNIER
propagate use_less flag in all pages
r9384 {{super()}}
MinRK
bootstrapify delete dialog
r10921 <script src="{{static_url("base/js/dialog.js") }}" type="text/javascript" charset="utf-8"></script>
Brian E. Granger
More work on the less setup.
r10706 <script src="{{static_url("tree/js/notebooklist.js") }}" type="text/javascript" charset="utf-8"></script>
<script src="{{static_url("tree/js/clusterlist.js") }}" type="text/javascript" charset="utf-8"></script>
Brian E. Granger
Renaming main JS files.
r10711 <script src="{{static_url("tree/js/main.js") }}" type="text/javascript" charset="utf-8"></script>
Cameron Bates
Refactor notebook to use Jinja2 instead of tornado templates
r8350 {% endblock %}