Fixed some other displays of money

This commit is contained in:
James Cole
2015-05-20 18:09:44 +02:00
parent 568ab26db1
commit 411f77fd29
4 changed files with 27 additions and 9 deletions

View File

@@ -1,6 +1,5 @@
<div class="list-group">
{% for journal in transactions %}
{% if journal.amount != 0 %}
<a class="list-group-item" title="{{journal.date.format('jS M Y')}}" href="{{route('transactions.show',journal.id)}}">
@@ -14,6 +13,5 @@
</span>
</a>
{% endif %}
{% endfor %}
</div>