mirror of
https://github.com/YunoHost-Apps/ihatemoney_ynh.git
synced 2024-09-03 19:26:15 +02:00
Fix an error in dashboard.html
This commit is contained in:
parent
5c4178b3b5
commit
848e4a34ce
1 changed files with 2 additions and 2 deletions
|
@ -7,8 +7,8 @@
|
|||
<tr>
|
||||
<td>{{ project.name }}</td><td>{{ project.members | count }}</td><td>{{ project.get_bills().count() }}</td>
|
||||
{% if project.has_bills() %}
|
||||
<td>{{ project.get_bills()[0].date }}</td>
|
||||
<td>{{ project.get_bills()[-1].date }}</td>
|
||||
<td>{{ project.get_bills().all()[0].date }}</td>
|
||||
<td>{{ project.get_bills().all()[-1].date }}</td>
|
||||
{% else %}
|
||||
<td></td>
|
||||
<td></td>
|
||||
|
|
Loading…
Reference in a new issue