##// END OF EJS Templates
manual rebase html notebook templates
Zachary Sailer -
Show More
@@ -24,7 +24,8 b' window.mathjax_url = "{{mathjax_url}}";'
24 24 data-project={{project}}
25 25 data-base-project-url={{base_project_url}}
26 26 data-base-kernel-url={{base_kernel_url}}
27 data-notebook-id={{notebook_id}}
27 data-notebook-name={{notebook_name}}
28 data-notebook-path={{notebook_path}}
28 29 class="notebook_app"
29 30
30 31 {% endblock %}
@@ -85,11 +86,11 b' class="notebook_app"'
85 86 <ul class="dropdown-menu">
86 87 <li id="cut_cell"><a href="#">Cut Cell</a></li>
87 88 <li id="copy_cell"><a href="#">Copy Cell</a></li>
88 <li id="paste_cell_above" class="disabled"><a href="#">Paste Cell Above</a></li>
89 <li id="paste_cell_below" class="disabled"><a href="#">Paste Cell Below</a></li>
90 <li id="paste_cell_replace" class="disabled"><a href="#">Paste Cell &amp; Replace</a></li>
89 <li id="paste_cell_above" class="ui-state-disabled"><a href="#">Paste Cell Above</a></li>
90 <li id="paste_cell_below" class="ui-state-disabled"><a href="#">Paste Cell Below</a></li>
91 <li id="paste_cell_replace" class="ui-state-disabled"><a href="#">Paste Cell &amp; Replace</a></li>
91 92 <li id="delete_cell"><a href="#">Delete Cell</a></li>
92 <li id="undelete_cell" class="disabled"><a href="#">Undo Delete Cell</a></li>
93 <li id="undelete_cell" class="ui-state-disabled"><a href="#">Undo Delete Cell</a></li>
93 94 <li class="divider"></li>
94 95 <li id="split_cell"><a href="#">Split Cell</a></li>
95 96 <li id="merge_cell_above"><a href="#">Merge Cell Above</a></li>
@@ -240,6 +241,7 b' class="notebook_app"'
240 241 <script src="{{ static_url("notebook/js/completer.js") }}" type="text/javascript" charset="utf-8"></script>
241 242 <script src="{{ static_url("notebook/js/textcell.js") }}" type="text/javascript" charset="utf-8"></script>
242 243 <script src="{{ static_url("services/kernels/js/kernel.js") }}" type="text/javascript" charset="utf-8"></script>
244 <script src="{{ static_url("services/sessions/js/session.js") }}" type="text/javascript" charset="utf-8"></script>
243 245 <script src="{{ static_url("notebook/js/savewidget.js") }}" type="text/javascript" charset="utf-8"></script>
244 246 <script src="{{ static_url("notebook/js/quickhelp.js") }}" type="text/javascript" charset="utf-8"></script>
245 247 <script src="{{ static_url("notebook/js/pager.js") }}" type="text/javascript" charset="utf-8"></script>
@@ -12,6 +12,8 b''
12 12
13 13 data-project={{project}}
14 14 data-base-project-url={{base_project_url}}
15 data-notebook-path={{notebook_path}}
16 data-notebook-name={{notebook_name}}
15 17 data-base-kernel-url={{base_kernel_url}}
16 18
17 19 {% endblock %}
General Comments 0
You need to be logged in to leave comments. Login now