aboutsummaryrefslogtreecommitdiff
path: root/budget/templates/sidebar_table_layout.html
diff options
context:
space:
mode:
Diffstat (limited to 'budget/templates/sidebar_table_layout.html')
-rw-r--r--budget/templates/sidebar_table_layout.html14
1 files changed, 14 insertions, 0 deletions
diff --git a/budget/templates/sidebar_table_layout.html b/budget/templates/sidebar_table_layout.html
new file mode 100644
index 0000000..7c831f4
--- /dev/null
+++ b/budget/templates/sidebar_table_layout.html
@@ -0,0 +1,14 @@
+{% extends "layout.html" %}
+
+{% block body %}
+<div class="row" style="height: 100%">
+<aside id="sidebar" class="sidebar col-3 " style="height: 100%">
+ {% block sidebar %}{% endblock %}
+</aside>
+
+<main class="offset-md-3 col-9">
+ {% block content %}{% endblock %}
+</main>
+
+</div>
+{% endblock %}