Fix up date format

This commit is contained in:
Drew DeVault 2016-07-04 16:22:14 -04:00
parent 3ecab13005
commit ff9f0fe89e
1 changed files with 1 additions and 1 deletions

View File

@ -109,7 +109,7 @@
<tbody>
{% for donation in donations %}
<tr>
<td>{{ donation.created.isoformat() }}</td>
<td>{{ donation.created.strftime("%Y-%m-%d") }}</td>
<td><a href="mailto:{{ donation.user.email }}">{{ donation.user.email }}</a></td>
<td>{{ donation.project.name if donation.project else "" }}</td>
<td title="{{ donation.comment }}">{{ donation.comment if donation.comment else "" }}</td>