aboutsummaryrefslogtreecommitdiff
path: root/budget/templates/list_bills.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/list_bills.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/list_bills.html')
-rw-r--r--budget/templates/list_bills.html12
1 files changed, 1 insertions, 11 deletions
diff --git a/budget/templates/list_bills.html b/budget/templates/list_bills.html
index aacc128..69a1692 100644
--- a/budget/templates/list_bills.html
+++ b/budget/templates/list_bills.html
@@ -1,16 +1,10 @@
-{% extends "layout.html" %}
+{% extends "sidebar_table_layout.html" %}
{% block title %} - {{ g.project.name }}{% endblock %}
{% block head %}
<script src="{{ url_for("static", filename="js/bootstrap-datepicker.js") }}"></script>
{% endblock %}
{% block js %}
-
- $(window).resize(function() {
- $("#sidebar").height( window.innerHeight-50 );
- $("#table_overflow").height( $("#sidebar").height()-120 );
- });
-
{% if add_bill %} $('#new-bill').click(); {% endif %}
// Hide all members actions
@@ -56,8 +50,6 @@
{% endblock %}
{% block sidebar %}
-<div id="sidebar" class="sidebar">
-
<form id="add-member-form" action="{{ url_for(".add_member") }}" method="post" class="form-inline">
{{ forms.add_member(member_form) }}
</form>
@@ -89,8 +81,6 @@
{% endfor %}
</table>
</div>
-
-</div>
{% endblock %}
{% block content %}