diff --git a/apps/participation/templates/participation/pool_detail.html b/apps/participation/templates/participation/pool_detail.html
index 0dbf035..f2ad59a 100644
--- a/apps/participation/templates/participation/pool_detail.html
+++ b/apps/participation/templates/participation/pool_detail.html
@@ -10,7 +10,7 @@
- {% trans "Tournament:" %}
- - {{ pool.tournament }}
+ - {{ pool.tournament }}
- {% trans "Round:" %}
- {{ pool.get_round_display }}
@@ -34,10 +34,23 @@
- {% trans "Defended solutions:" %}
-
{% for passage in pool.passages.all %}
- {{ passage.defended_solution }}{% if not forloop.last %}, {% endif %}
+ {{ passage.defended_solution }}{% if not forloop.last %}, {% endif %}
{% endfor %}
+
+
+
+
+
+ {% for participation, note in notes %}
+ - {{ participation.team }} : {{ note }}
+ {% endfor %}
+
+
+
{% if user.registration.is_admin %}