aboutsummaryrefslogtreecommitdiff
path: root/budget/templates/sidebar_table_layout.html
diff options
context:
space:
mode:
authorJocelyn Delalande <jocelyn@crapouillou.net>2017-02-01 20:22:25 +0100
committerJocelyn Delalande <jocelyn@crapouillou.net>2017-02-04 00:41:20 +0100
commita3cbede680f9623c7ab4071df9abf143dec64065 (patch)
treef3286c066271492914372f25169656e72dda5244 /budget/templates/sidebar_table_layout.html
parent286213026982435e6e87cdbbd5dddcd80e925b91 (diff)
downloadihatemoney-mirror-a3cbede680f9623c7ab4071df9abf143dec64065.zip
ihatemoney-mirror-a3cbede680f9623c7ab4071df9abf143dec64065.tar.gz
ihatemoney-mirror-a3cbede680f9623c7ab4071df9abf143dec64065.tar.bz2
Refactor layout based on bootstrap 4 grid
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 %}