diff --git a/Resources/views/Person/view.html.twig b/Resources/views/Person/view.html.twig
index af914c8fc..cacd889c0 100644
--- a/Resources/views/Person/view.html.twig
+++ b/Resources/views/Person/view.html.twig
@@ -41,13 +41,13 @@ This view should receive those arguments:
{{ 'General information'|trans|upper }}
- - {{ 'First name'|trans }}
+ - {{ 'First name'|trans }} :
- {{ person.firstName }}
- - {{ 'Last name'|trans }}
+ - {{ 'Last name'|trans }} :
- {{ person.lastName }}
- - {{ 'Gender'|trans }}
+ - {{ 'Gender'|trans }} :
- {{ ( person.gender|default('Not given'))|trans }}
@@ -63,7 +63,7 @@ This view should receive those arguments:
{{ 'Birth information'|trans|upper }}
- - {{ 'Date of birth'|trans }}
+ - {{ 'Date of birth'|trans }} :
-
{%- if person.birthdate is not null -%}
{{ person.birthdate|localizeddate('long', 'none') }}
@@ -72,7 +72,7 @@ This view should receive those arguments:
{%- endif -%}
- - {{ 'Place of birth'|trans }}
+ - {{ 'Place of birth'|trans }} :
- {{ person.placeOfBirth }}
- {% spaceless %}
{% if person.countryOfBirth is not null %}
@@ -96,7 +96,7 @@ This view should receive those arguments:
{{ 'Administrative information'|trans|upper }}
- - {{ 'Nationality'|trans }}
+ - {{ 'Nationality'|trans }} :
-
{% if person.nationality is not null %}
{{ person.nationality.name|localize_translatable_string }}
@@ -106,7 +106,7 @@ This view should receive those arguments:
- - {{'Spoken languages'|trans}}
+ - {{'Spoken languages'|trans}} :
-
{% if person.spokenLanguages|length == 0 %}
{{ 'Unknown spoken languages'|trans }}
@@ -118,7 +118,7 @@ This view should receive those arguments:
- - {{'Marital status'|trans}}
+ - {{'Marital status'|trans}} :
-
{% if person.maritalStatus is not null %}
{{ person.maritalStatus.name|localize_translatable_string }}
@@ -138,11 +138,11 @@ This view should receive those arguments:
{{ 'Contact information'|trans|upper }}
- - {{ 'Email'|trans }}
+ - {{ 'Email'|trans }} :
{{ person.email}}
- - {{ 'Phonenumber'|trans }}
+ - {{ 'Phonenumber'|trans }} :
{{ person.phonenumber}}
@@ -162,7 +162,7 @@ This view should receive those arguments:
{% if customField.type == 'title' %}
{{ chill_custom_field_widget(person.cFData , customField) }}
{% else %}
- - {{ chill_custom_field_label(customField) }}
+ - {{ chill_custom_field_label(customField) }} :
- {{ chill_custom_field_widget(person.cFData , customField) }}
{% endif %}
{% endfor %}