diff --git a/Resources/views/Event/show.html.twig b/Resources/views/Event/show.html.twig
index e28fec753..8c47ab42c 100644
--- a/Resources/views/Event/show.html.twig
+++ b/Resources/views/Event/show.html.twig
@@ -75,18 +75,22 @@
-
- - {{ 'Edit all the participations'|trans }}
-
- {{ form_start(form_add_participation_by_person) }}
- {{ form_widget(form_add_participation_by_person.person_id, { 'attr' : { 'style' : 'width: 20em; display:inline-block; ' } } ) }}
- {{ form_widget(form_add_participation_by_person.submit, { 'attr' : { 'class' : 'sc-button btn-create' } } ) }}
- {{ form_rest(form_add_participation_by_person) }}
- {{ form_end(form_add_participation_by_person) }}
-
-
-
+
{% endif %}
+
+
+ {% if count > 0 %}
+ - {{ 'Edit all the participations'|trans }}
+ {% endif %}
+
+ {{ form_start(form_add_participation_by_person) }}
+ {{ form_widget(form_add_participation_by_person.person_id, { 'attr' : { 'style' : 'width: 20em; display:inline-block; ' } } ) }}
+ {{ form_widget(form_add_participation_by_person.submit, { 'attr' : { 'class' : 'sc-button btn-create' } } ) }}
+ {{ form_rest(form_add_participation_by_person) }}
+ {{ form_end(form_add_participation_by_person) }}
+
+
+
{% endblock %}