localize date in report bundles: switch to twig intl extension

refs #272

refs #
Task #272 - Find a way to deal with date format automatically
This commit is contained in:
2015-01-23 12:02:31 +01:00
parent 57e4bc924c
commit a767a67db7
3 changed files with 3 additions and 3 deletions

View File

@@ -33,7 +33,7 @@
{% for report in reports %}
<tr>
<td>{{ report.person }}</td>
<td>{% if report.date %}{{ report.date|date('d-m-Y') }}{% endif %}</td>
<td>{% if report.date %}{{ report.date|localizeddate('long', 'none') }}{% endif %}</td>
<td>{{ report.cFGroup.getName|localize_translatable_string }}</td>
<!-- <td>{{ report.scope }}</td> -->
<td><a href="{{ path('report_view', { 'person_id': report.person.id, 'report_id': report.id }) }}">{{ 'View the report' | trans }}</a></td>