aboutsummaryrefslogtreecommitdiff
path: root/ihatemoney/templates/dashboard.html
diff options
context:
space:
mode:
authorJocelyn Delalande <jocelyn@crapouillou.net>2018-02-04 13:10:57 +0100
committerJocelyn Delalande <jocelyn@crapouillou.net>2018-02-04 13:12:08 +0100
commitcf7bd572489aad17bf60026c6618d0ff49f822a9 (patch)
tree571b1dbbbe60c1d794ca79e5f4f0b2671e6d42dc /ihatemoney/templates/dashboard.html
parent434ee8b85251ee14cb0535cbb92b9b28b84f0b8d (diff)
downloadihatemoney-mirror-cf7bd572489aad17bf60026c6618d0ff49f822a9.zip
ihatemoney-mirror-cf7bd572489aad17bf60026c6618d0ff49f822a9.tar.gz
ihatemoney-mirror-cf7bd572489aad17bf60026c6618d0ff49f822a9.tar.bz2
Remove unused CSS odd/even classes
That was forgotten from fe39258630e55d4a3e1297a01a1c8fd39bad3a4e
Diffstat (limited to 'ihatemoney/templates/dashboard.html')
-rw-r--r--ihatemoney/templates/dashboard.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/ihatemoney/templates/dashboard.html b/ihatemoney/templates/dashboard.html
index b1220bd..807e3e2 100644
--- a/ihatemoney/templates/dashboard.html
+++ b/ihatemoney/templates/dashboard.html
@@ -4,7 +4,7 @@
<table id="bill_table" class="table table-striped">
<thead><tr><th>{{ _("Project") }}</th><th>{{ _("Number of members") }}</th><th>{{ _("Number of bills") }}</th><th>{{_("Newest bill")}}</th><th>{{_("Oldest bill")}}</th><th>{{_("Actions")}}</th></tr></thead>
<tbody>{% for project in projects|sort(attribute='name') %}
- <tr class="{{ loop.cycle("odd", "even") }}">
+ <tr>
<td>{{ project.name }}</td><td>{{ project.members | count }}</td><td>{{ project.get_bills().count() }}</td>
{% if project.has_bills() %}
<td>{{ project.get_bills().all()[0].date }}</td>