diff --git a/src/Bundle/ChillPersonBundle/Resources/views/AccompanyingCourse/comment_list.html.twig b/src/Bundle/ChillPersonBundle/Resources/views/AccompanyingCourse/comment_list.html.twig
index a81721530..6f900dc05 100644
--- a/src/Bundle/ChillPersonBundle/Resources/views/AccompanyingCourse/comment_list.html.twig
+++ b/src/Bundle/ChillPersonBundle/Resources/views/AccompanyingCourse/comment_list.html.twig
@@ -1,5 +1,27 @@
{% extends '@ChillPerson/AccompanyingCourse/layout.html.twig' %}
+{% macro show_comment(comment, options) %}
+
+
+
+ {% if options.pinned is defined %}
+
+ {% endif %}
+
+ {{ 'by'|trans }}{{ comment.creator }}{{ ', ' ~ 'on'|trans ~ ' ' ~ comment.createdAt|format_date('long') }}
+ {{ 'Last updated on'|trans ~ ' ' ~ comment.updatedAt|format_datetime('long', 'short') }}
+
+
+
+
+
{{ comment.content }}
+
+
+{% endmacro %}
+
{% block title %}
{{ 'Accompanying Course Comment list'|trans }}
{% endblock %}
@@ -7,5 +29,16 @@
{% block content %}
{% endblock %}
diff --git a/src/Bundle/ChillPersonBundle/translations/messages.fr.yml b/src/Bundle/ChillPersonBundle/translations/messages.fr.yml
index 152a66ee0..250890cd0 100644
--- a/src/Bundle/ChillPersonBundle/translations/messages.fr.yml
+++ b/src/Bundle/ChillPersonBundle/translations/messages.fr.yml
@@ -409,6 +409,7 @@ Locate by: Localiser auprès de
fix it: Compléter
Accompanying Course Comment: Commentaire
Accompanying Course Comment list: Commentaires du parcours
+pinned: épinglé
# Household
Household: Ménage
{{ block('title') }}
+