Skip to content

Commit

Permalink
Merge pull request #247 from crwilcox/master
Browse files Browse the repository at this point in the history
Add Jinja Blocks to notebook.html and tree.html
  • Loading branch information
minrk committed Aug 13, 2015
2 parents 13b663a + 8353692 commit cfdd431
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions notebook/templates/notebook.html
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,9 @@
</span>

<span id="kernel_logo_widget">
{% block kernel_logo_widget %}
<img class="current_kernel_logo" src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7"/>
{% endblock %}
</span>

{% endblock headercontainer %}
Expand Down Expand Up @@ -250,6 +252,7 @@
</li>
<li class="dropdown"><a href="#" class="dropdown-toggle" data-toggle="dropdown">Help</a>
<ul id="help_menu" class="dropdown-menu">
{% block help %}
<li id="notebook_tour" title="A quick tour of the notebook user interface"><a href="#">User Interface Tour</a></li>
<li id="keyboard_shortcuts" title="Opens a tooltip with all keyboard shortcuts"><a href="#">Keyboard Shortcuts</a></li>
<li class="divider"></li>
Expand All @@ -275,6 +278,7 @@
{% endfor %}
<li class="divider"></li>
<li title="About IPython Notebook"><a id="notebook_about" href="#">About</a></li>
{% endblock %}
</ul>
</li>
</ul>
Expand Down
2 changes: 1 addition & 1 deletion notebook/templates/tree.html
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<ul id="tabs" class="nav nav-tabs">
<li class="active"><a href="#notebooks" data-toggle="tab">Files</a></li>
<li><a href="#running" data-toggle="tab">Running</a></li>
<li><a href="#clusters" data-toggle="tab">Clusters</a></li>
<li><a href="#clusters" data-toggle="tab" class="clusters_tab_link" >Clusters</a></li>
</ul>
<div class="tab-content">
<div id="notebooks" class="tab-pane active">
Expand Down

0 comments on commit cfdd431

Please sign in to comment.