Skip to content

Commit

Permalink
fixed blueprint issue with index
Browse files Browse the repository at this point in the history
  • Loading branch information
NorthIsUp committed Mar 6, 2012
1 parent ded03b4 commit 6c713da
Show file tree
Hide file tree
Showing 8 changed files with 6 additions and 6 deletions.
Expand Up @@ -3,14 +3,14 @@
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
{% block head %}
{% include '_head.html' %}
{% include 'dashboard/_head.html' %}
{% endblock %}
</head>
<body {% block bodyattr %}{% endblock %} >
<div id="content">{% block content %}{% endblock %}</div>
<div id="footer">
{% block footer %}
{% include '_foot.html' %}
{% include 'dashboard/_foot.html' %}
{% endblock %}
</div>
</body>
@@ -1,8 +1,8 @@
{% extends '_base.html' %}
{% extends 'dashboard/_base.html' %}
{% block bodyattr %}id="deploy" class="dashboard" style="background-image:url('{{ url_for('.static', filename='static/images/dash.png') }}',background-repeat: no-repeat)"{% endblock %}

{% block head %}
{% include '_head.html' %}
{% include 'dashboard/_head.html' %}

<title>Deploy Dashboard</title>
<link rel="stylesheet" type="text/css" href="{{ url_for('.static', filename='css/screen.css') }}">
Expand All @@ -13,7 +13,7 @@
{% endblock %}
{% block content %}

{% include '_nav.html' %}
{% include 'dashboard/_nav.html' %}


<div class="container-fluid">
Expand Down
2 changes: 1 addition & 1 deletion mrsdash/blueprints/dashboard/views.py
Expand Up @@ -48,7 +48,7 @@ def charts():
'the_time': display_time(time)
}

return render_template('index.html', **d)
return render_template('dashboard/index.html', **d)


# __views_attrs = {
Expand Down

0 comments on commit 6c713da

Please sign in to comment.