diff --git a/src/Bundle/ChillActivityBundle/Resources/views/Activity/list_recent.html.twig b/src/Bundle/ChillActivityBundle/Resources/views/Activity/list_recent.html.twig
index 0f426c5a9..e8be2c49e 100644
--- a/src/Bundle/ChillActivityBundle/Resources/views/Activity/list_recent.html.twig
+++ b/src/Bundle/ChillActivityBundle/Resources/views/Activity/list_recent.html.twig
@@ -48,7 +48,7 @@
{{ 'Participants'|trans ~ ' : ' }}
{% for p in activity.personsAssociated %}
- {{ p|chill_entity_render_box }}
+ {{ p|chill_entity_render_box({'addAgeBadge': true}) }}
{% endfor %}
diff --git a/src/Bundle/ChillPersonBundle/Resources/views/AccompanyingCourseWork/list_recent_by_accompanying_period.html.twig b/src/Bundle/ChillPersonBundle/Resources/views/AccompanyingCourseWork/list_recent_by_accompanying_period.html.twig
index d45ba40ca..7f2fb0177 100644
--- a/src/Bundle/ChillPersonBundle/Resources/views/AccompanyingCourseWork/list_recent_by_accompanying_period.html.twig
+++ b/src/Bundle/ChillPersonBundle/Resources/views/AccompanyingCourseWork/list_recent_by_accompanying_period.html.twig
@@ -31,7 +31,7 @@
{{ 'Participants'|trans ~ ' : ' }}
{% for p in w.persons %}
- {{ p|chill_entity_render_box }}
+ {{ p|chill_entity_render_box({'addAgeBadge': true}) }}
{% endfor %}
diff --git a/src/Bundle/ChillPersonBundle/Resources/views/Entity/person.html.twig b/src/Bundle/ChillPersonBundle/Resources/views/Entity/person.html.twig
index b60325bec..9bee504a9 100644
--- a/src/Bundle/ChillPersonBundle/Resources/views/Entity/person.html.twig
+++ b/src/Bundle/ChillPersonBundle/Resources/views/Entity/person.html.twig
@@ -43,7 +43,7 @@
{%- endif -%}
{%- if options['addAgeBadge'] -%}
{% if person.age is not null and person.deathDate is null %}
- ({{- 'years_old'|trans({ 'age': person.age }) -}})
+ ({{- 'years_old'|trans({ 'age': person.age }) -}})
{% endif %}
{% endif %}
{% endmacro raw %}