diff --git a/Resources/views/Event/list.html.twig b/Resources/views/Event/list.html.twig
index aaa9bbaba..366d0c588 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|format_date('long', 'short') }} |
+ {{ event.date|format_date('long') }} |
{{ event.type.name|localize_translatable_string }} |
diff --git a/Resources/views/Event/listByPerson.html.twig b/Resources/views/Event/listByPerson.html.twig
index 4a9a9f6c5..2cd19d08a 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|format_date('long', 'short') }} |
+ {{ participation.event.date|format_date('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 f699102f8..9e03f7fe6 100644
--- a/Resources/views/Event/show.html.twig
+++ b/Resources/views/Event/show.html.twig
@@ -15,7 +15,7 @@
{{ 'Date'|trans }} |
- {{ event.date|format_date('long', 'short') }} |
+ {{ event.date|format_date('long') }} |
{{ 'Event type'|trans }} |
@@ -87,7 +87,7 @@
{{ participation.status.name|localize_translatable_string }} |
{{ participation.lastUpdate|ago }} {# sf4 check: filter 'time_diff' is abandoned,
alternative: knplabs/knp-time-bundle provide filter 'ago' #}
-
+
|
diff --git a/Resources/views/Participation/edit-multiple.html.twig b/Resources/views/Participation/edit-multiple.html.twig
index 6db322b69..18465d241 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|format_date('long', 'short') }} |
+ {{ event.date|format_date('long') }} |
@@ -40,7 +40,7 @@
{{ form_widget(participation.status) }} |
{{ participation.vars.value.lastUpdate|ago }} {# sf4 check: filter 'time_diff' is abandoned,
alternative: knplabs/knp-time-bundle provide filter 'ago' #}
-
+
|
|
{% endfor %}
diff --git a/Resources/views/Participation/edit.html.twig b/Resources/views/Participation/edit.html.twig
index 0f24ae1f6..93956c5f0 100644
--- a/Resources/views/Participation/edit.html.twig
+++ b/Resources/views/Participation/edit.html.twig
@@ -17,7 +17,7 @@
{{ 'Date'|trans }} |
- {{ participation.event.date|format_date('long', 'short') }} |
+ {{ participation.event.date|format_date('long') }} |
diff --git a/Resources/views/Timeline/event_person_context.html.twig b/Resources/views/Timeline/event_person_context.html.twig
index 0f16da380..09c2390c2 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|format_date('long', 'short') }}
+ {{ event.date|format_date('long') }}
/
{% if boolDate|trans == 'futur' %}
Prochain événement