Graph base template
This commit is contained in:
parent
41718d128a
commit
1fb1bec70e
1 changed files with 19 additions and 0 deletions
19
templates/graph_base.html
Normal file
19
templates/graph_base.html
Normal file
|
@ -0,0 +1,19 @@
|
|||
{# vim: set ft=htmldjango #}
|
||||
{% extends "base.html" %}
|
||||
|
||||
{% block head_css %}
|
||||
<style text="text/css">
|
||||
h1.placeholder {
|
||||
margin-top: 80px;
|
||||
text-align: center;
|
||||
color: #ccc;
|
||||
}
|
||||
</style>
|
||||
{% endblock %}
|
||||
|
||||
{% block container %}
|
||||
{% include "navbar.html" %}
|
||||
<div class="container-fluid">
|
||||
{% block graph %}<h1 class="placeholder">PUT A GRAPH HERE</h1>{% endblock %}
|
||||
</div>
|
||||
{% endblock container %}
|
Loading…
Add table
Add a link
Reference in a new issue