diff --git a/Resources/views/Event/list.html.twig b/Resources/views/Event/list.html.twig
index cdd2a821d..aaa9bbaba 100644
--- a/Resources/views/Event/list.html.twig
+++ b/Resources/views/Event/list.html.twig
@@ -19,7 +19,7 @@
{% for event in events %}
{{ event.name }} |
- {{ event.date|localizeddate('long', 'short') }} |
+ {{ event.date|format_date('long', 'short') }} |
{{ event.type.name|localize_translatable_string }} |
diff --git a/Resources/views/Event/listByPerson.html.twig b/Resources/views/Event/listByPerson.html.twig
index a59d28076..4635946d9 100644
--- a/Resources/views/Event/listByPerson.html.twig
+++ b/Resources/views/Event/listByPerson.html.twig
@@ -38,7 +38,7 @@
{% for participation in participations %}
- {{ participation.event.date|localizeddate('long', 'short') }} |
+ {{ participation.event.date|format_date('long', 'short') }} |
{{ participation.event.name }} |
{{ participation.event.type.name|localize_translatable_string }} |
{{ participation.role.name|localize_translatable_string }} |
diff --git a/Resources/views/Event/show.html.twig b/Resources/views/Event/show.html.twig
index 7ca6917a7..4690854cc 100644
--- a/Resources/views/Event/show.html.twig
+++ b/Resources/views/Event/show.html.twig
@@ -15,7 +15,7 @@
{{ 'Date'|trans }} |
- {{ event.date|localizeddate('long', 'short') }} |
+ {{ event.date|format_date('long', 'short') }} |
{{ 'Event type'|trans }} |
@@ -85,7 +85,7 @@
{{ person_macro.render(participation.person) }} |
{{ participation.role.name|localize_translatable_string }} |
{{ participation.status.name|localize_translatable_string }} |
- {{ participation.lastUpdate|time_diff }} |
+ {{ participation.lastUpdate|time_diff }} |
{% if is_granted('CHILL_EVENT_PARTICIPATION_UPDATE', participation) %}
diff --git a/Resources/views/Participation/edit-multiple.html.twig b/Resources/views/Participation/edit-multiple.html.twig
index 1d6a8c5c7..5031544b5 100644
--- a/Resources/views/Participation/edit-multiple.html.twig
+++ b/Resources/views/Participation/edit-multiple.html.twig
@@ -13,7 +13,7 @@
|
{{ 'Date'|trans }} |
- {{ event.date|localizeddate('long', 'short') }} |
+ {{ event.date|format_date('long', 'short') }} |
@@ -38,7 +38,7 @@
{{ person_macro.render(participation.vars.value.person) }} |
{{ form_widget(participation.role) }} |
{{ form_widget(participation.status) }} |
- {{ participation.vars.value.lastUpdate|time_diff }} |
+ {{ participation.vars.value.lastUpdate|time_diff }} |
|
{% endfor %}
diff --git a/Resources/views/Participation/edit.html.twig b/Resources/views/Participation/edit.html.twig
index 86b9422a2..2aa336b44 100644
--- a/Resources/views/Participation/edit.html.twig
+++ b/Resources/views/Participation/edit.html.twig
@@ -17,7 +17,7 @@
{{ 'Date'|trans }} |
- {{ participation.event.date|localizeddate('long', 'short') }} |
+ {{ participation.event.date|format_date('long', 'short') }} |
diff --git a/Resources/views/Timeline/event_person_context.html.twig b/Resources/views/Timeline/event_person_context.html.twig
index 7548027b1..0f16da380 100644
--- a/Resources/views/Timeline/event_person_context.html.twig
+++ b/Resources/views/Timeline/event_person_context.html.twig
@@ -7,7 +7,7 @@
{% endif %}
-
{{ event.date|localizeddate('long', 'short') }}
+ {{ event.date|format_date('long', 'short') }}
/
{% if boolDate|trans == 'futur' %}
Prochain événement