From 0c2a6a0787d0d03052fa0164f717ae8c8ec3fcd1 Mon Sep 17 00:00:00 2001 From: Bart van der Schoor Date: Mon, 18 Sep 2023 12:02:47 +0200 Subject: [PATCH] [#1703] Hidden BRP country from My Data table when not set --- src/open_inwoner/templates/pages/profile/mydata.html | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/open_inwoner/templates/pages/profile/mydata.html b/src/open_inwoner/templates/pages/profile/mydata.html index 866ced0d82..8b83e46983 100644 --- a/src/open_inwoner/templates/pages/profile/mydata.html +++ b/src/open_inwoner/templates/pages/profile/mydata.html @@ -73,10 +73,12 @@

{% trans "Inschrijfadres" %}

{% trans "Plaats" %}
{{my_data.city|default:"-"}}
+ {% if my_data.country %}
{% trans "Land" %}
{{my_data.country|default:"-"}}
+ {% endif %}