##// END OF EJS Templates
Renaming templates to match other names.
Brian E. Granger -
Show More
@@ -43,7 +43,7 b' class NamedNotebookHandler(IPythonHandler):'
43 nbm = self.notebook_manager
43 nbm = self.notebook_manager
44 if not nbm.notebook_exists(notebook_id):
44 if not nbm.notebook_exists(notebook_id):
45 raise web.HTTPError(404, u'Notebook does not exist: %s' % notebook_id)
45 raise web.HTTPError(404, u'Notebook does not exist: %s' % notebook_id)
46 self.write(self.render_template('notebook.html',
46 self.write(self.render_template('notebooks.html',
47 project=self.project,
47 project=self.project,
48 notebook_id=notebook_id,
48 notebook_id=notebook_id,
49 kill_kernel=False,
49 kill_kernel=False,
1 NO CONTENT: file renamed from IPython/frontend/html/notebook/templates/page.html to IPython/frontend/html/notebook/templates/base.html
NO CONTENT: file renamed from IPython/frontend/html/notebook/templates/page.html to IPython/frontend/html/notebook/templates/base.html
@@ -1,4 +1,4 b''
1 {% extends "page.html" %}
1 {% extends "base.html" %}
2
2
3 {% block stylesheet %}
3 {% block stylesheet %}
4
4
@@ -1,4 +1,4 b''
1 {% extends "page.html" %}
1 {% extends "base.html" %}
2
2
3 {% block stylesheet %}
3 {% block stylesheet %}
4
4
@@ -1,4 +1,4 b''
1 {% extends "page.html" %}
1 {% extends "base.html" %}
2
2
3 {% block stylesheet %}
3 {% block stylesheet %}
4
4
@@ -1,4 +1,4 b''
1 {% extends "page.html" %}
1 {% extends "base.html" %}
2
2
3 {% block title %}IPython Dashboard{% endblock %}
3 {% block title %}IPython Dashboard{% endblock %}
4
4
@@ -27,7 +27,7 b' class ProjectDashboardHandler(IPythonHandler):'
27
27
28 @authenticate_unless_readonly
28 @authenticate_unless_readonly
29 def get(self):
29 def get(self):
30 self.write(self.render_template('projectdashboard.html',
30 self.write(self.render_template('tree.html',
31 project=self.project,
31 project=self.project,
32 project_component=self.project.split('/'),
32 project_component=self.project.split('/'),
33 ))
33 ))
General Comments 0
You need to be logged in to leave comments. Login now