diff --git a/src/open_inwoner/components/templates/components/File/File.html b/src/open_inwoner/components/templates/components/File/File.html
index b46f1b6ce6..7e2ed885e8 100644
--- a/src/open_inwoner/components/templates/components/File/File.html
+++ b/src/open_inwoner/components/templates/components/File/File.html
@@ -25,7 +25,7 @@
({{size|readable_size}})
{% endif %}
-
{{ created|date:'d.m.Y' }}
+
{{ created|date:'j F Y' }}
{% if allow_delete %}
{% dropdown icon="more_horiz" %}
diff --git a/src/open_inwoner/conf/parts/maileditor.py b/src/open_inwoner/conf/parts/maileditor.py
index 3774178073..1644a8343d 100644
--- a/src/open_inwoner/conf/parts/maileditor.py
+++ b/src/open_inwoner/conf/parts/maileditor.py
@@ -149,7 +149,7 @@
{% for action in actions %}
{{ action.name }} |
- {{ action.end_date|date:"d-m-Y" }} |
+ {{ action.end_date|date:"j F Y" }} |
{% endfor %}
@@ -201,7 +201,7 @@
{{ plan.title }} |
{{ plan.goal }} |
- {{ plan.end_date|date:"d-m-Y" }} |
+ {{ plan.end_date|date:"j F Y" }} |
{% endfor %}
diff --git a/src/open_inwoner/plans/tests/test_views.py b/src/open_inwoner/plans/tests/test_views.py
index db9d2cd004..6cdcb1c389 100644
--- a/src/open_inwoner/plans/tests/test_views.py
+++ b/src/open_inwoner/plans/tests/test_views.py
@@ -721,7 +721,7 @@ def test_plan_list_renders_expected_data(self):
self.assertIn(self.begeleider_plan.title, rendered_plan_title)
self.assertEqual(rendered_contact, self.contact.get_full_name())
- self.assertEqual(rendered_end_date, "20-01-2022")
+ self.assertEqual(rendered_end_date, "20 januari 2022")
self.assertEqual(rendered_plan_status, _("Open"))
self.assertEqual(rendered_actions_num, "1")
self.assertEqual(rendered_action_required, _("Actie vereist"))
@@ -736,7 +736,7 @@ def test_plan_list_renders_expected_data_for_expired_plan(self):
rendered_end_date = items[1].text
rendered_plan_status = items[2].text
- self.assertEqual(rendered_end_date, "01-01-2022")
+ self.assertEqual(rendered_end_date, "01 januari 2022")
self.assertEqual(rendered_plan_status, _("Afgerond"))
@freeze_time("2022-01-01")
diff --git a/src/open_inwoner/templates/export/profile/profile_export.html b/src/open_inwoner/templates/export/profile/profile_export.html
index 8a0f1bdaeb..835c38a1b9 100644
--- a/src/open_inwoner/templates/export/profile/profile_export.html
+++ b/src/open_inwoner/templates/export/profile/profile_export.html
@@ -20,7 +20,7 @@
{{ object.get_full_name }}
- {{ object.date_joined}} |
+ {{ object.date_joined|date:"j F Y"}} |
{% if object.bsn %}
diff --git a/src/open_inwoner/templates/pages/history.html b/src/open_inwoner/templates/pages/history.html
index e84f102f0f..7b1e70b586 100644
--- a/src/open_inwoner/templates/pages/history.html
+++ b/src/open_inwoner/templates/pages/history.html
@@ -20,7 +20,7 @@
{% for log in logs %}
{% with log.extra_data.message as log_message %}
- {{ log.timestamp|date:"d-m-Y" }} |
+ {{ log.timestamp|date:"d F Y" }} |
{{ log.user.get_full_name }} |
{% if not log_message|is_list_instance %}
diff --git a/src/open_inwoner/templates/pages/plans/list.html b/src/open_inwoner/templates/pages/plans/list.html
index 9a5deddc49..12b9b261a3 100644
--- a/src/open_inwoner/templates/pages/plans/list.html
+++ b/src/open_inwoner/templates/pages/plans/list.html
@@ -47,7 +47,7 @@
{{plan_participants|truncatechars:30}} |
- {{plan.end_date|date:"d-m-Y"}} |
+ {{plan.end_date|date:"d F Y"}} |
{{plan.get_status}} |
{{plan.open_actions.count}} |
diff --git a/src/open_inwoner/templates/pages/profile/me.html b/src/open_inwoner/templates/pages/profile/me.html
index 0fcc9ad613..17a96b1569 100644
--- a/src/open_inwoner/templates/pages/profile/me.html
+++ b/src/open_inwoner/templates/pages/profile/me.html
@@ -11,7 +11,7 @@
{% trans "Welkom" %}, {{ user.first_name }}
- {%trans "voor het laatst ingelogd op" %}: {{ user.last_login|date:"d F Y" }} om {{ user.last_login|date:"H:i" }} uur
+ {%trans "voor het laatst ingelogd op" %}: {{ user.last_login|date:"j F Y" }} om {{ user.last_login|date:"H:i" }} uur
{# Personal information #}
@@ -38,7 +38,7 @@ {% trans "Persoonlijke gegevens" %}
{% trans "Geboortedatum" %}
- {{ user.birthday|date:"d F Y" }}
+ {{ user.birthday|date:"j F Y" }}
{% trans "Adres" %}
diff --git a/src/open_inwoner/templates/pages/profile/mydata.html b/src/open_inwoner/templates/pages/profile/mydata.html
index 4ca5893756..38ec2bb609 100644
--- a/src/open_inwoner/templates/pages/profile/mydata.html
+++ b/src/open_inwoner/templates/pages/profile/mydata.html
@@ -37,7 +37,7 @@ {% trans "Mijn BRP gegevens" %}
{% trans "Geboortedatum" %}
- {{my_data.birthday|date:"d-m-Y"|default:"-"}}
+ {{my_data.birthday|date:"d F Y"|default:"-"}}
{% trans "Geboorteplaats" %}
| |