diff --git a/Resources/views/Address/macro.html.twig b/Resources/views/Address/macro.html.twig index 8c8e3f3b8..165d7c280 100644 --- a/Resources/views/Address/macro.html.twig +++ b/Resources/views/Address/macro.html.twig @@ -14,7 +14,7 @@ {% endif %} {%- if options['with_valid_from'] == true -%} - {{ 'Since %date%'|trans( { '%date%' : address.validFrom|format_date('long', 'none') } ) }} + {{ 'Since %date%'|trans( { '%date%' : address.validFrom|format_date('long') } ) }} {%- endif -%} {%- endmacro -%} diff --git a/Resources/views/Extensions/PrintOrMessage/blockquote_date.html.twig b/Resources/views/Extensions/PrintOrMessage/blockquote_date.html.twig index 770d3dc23..d6b774ad3 100644 --- a/Resources/views/Extensions/PrintOrMessage/blockquote_date.html.twig +++ b/Resources/views/Extensions/PrintOrMessage/blockquote_date.html.twig @@ -1 +1 @@ -{% if value is not empty %}
{{ value|format_date(date_format, time_format) }}
{% else %}{{ message|trans }}{% endif %} \ No newline at end of file +{% if value is not empty %}
{{ value|format_date(date_format) }}
{% else %}{{ message|trans }}{% endif %} \ No newline at end of file diff --git a/Resources/views/Extensions/PrintOrMessage/default_date.html.twig b/Resources/views/Extensions/PrintOrMessage/default_date.html.twig index 528a7d56e..0854d9448 100644 --- a/Resources/views/Extensions/PrintOrMessage/default_date.html.twig +++ b/Resources/views/Extensions/PrintOrMessage/default_date.html.twig @@ -1 +1 @@ -{% if value is not empty %}{{ value|format_date(date_format, time_format) }}{% else %}{{ message|trans }}{% endif %} \ No newline at end of file +{% if value is not empty %}{{ value|format_date(date_format) }}{% else %}{{ message|trans }}{% endif %} \ No newline at end of file