This commit is contained in:
James Cole 2018-04-15 17:58:39 +02:00
parent a85ebb49b2
commit 91494584c2
No known key found for this signature in database
GPG Key ID: C16961E655E74B5E

View File

@ -54,7 +54,7 @@
<td>{{ 'start_date'|_ }}</td>
<td>
{% if piggyBank.startdate %}
{{ piggyBank.startdate.format('jS F Y') }}
{{ piggyBank.startdate.formatLocalized(monthAndDayFormat) }}
{% else %}
<em>{{ 'no_start_date'|_ }}</em>
{% endif %}
@ -64,7 +64,7 @@
<td>{{ 'target_date'|_ }}</td>
<td>
{% if piggyBank.targetdate %}
{{ piggyBank.targetdate.format('jS F Y') }}
{{ piggyBank.targetdate.formatLocalized(monthAndDayFormat) }}
{% else %}
<em>{{ 'no_target_date'|_ }}</em>
{% endif %}