fix date display
This commit is contained in:
parent
637bc48a7b
commit
83f61a4c9e
1 changed files with 2 additions and 2 deletions
|
@ -55,7 +55,7 @@
|
||||||
<strong>Description:</strong> {{ budgetGroup.description.strip }}
|
<strong>Description:</strong> {{ budgetGroup.description.strip }}
|
||||||
</p>
|
</p>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% for line in all_lines.0|dictsort:"date" %}
|
{% for line in all_lines.0|dictsortreversed:"date" %}
|
||||||
{% if forloop.first %}
|
{% if forloop.first %}
|
||||||
<table class="table">
|
<table class="table">
|
||||||
<thead>
|
<thead>
|
||||||
|
@ -72,7 +72,7 @@
|
||||||
<tbody>
|
<tbody>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
<tr id="tableline-{{ line.id }}">
|
<tr id="tableline-{{ line.id }}">
|
||||||
<td>{{ line.date }}</td>
|
<td>{{ line.date|date:"Y-m-d" }}</td>
|
||||||
<td>{{ line.title }}</td>
|
<td>{{ line.title }}</td>
|
||||||
<td>{{ line.amount }}€</td>
|
<td>{{ line.amount }}€</td>
|
||||||
<td>{{ line.author.name }}</td>
|
<td>{{ line.author.name }}</td>
|
||||||
|
|
Loading…
Reference in a new issue