diff --git a/apps/participation/templates/participation/team_detail.html b/apps/participation/templates/participation/team_detail.html
index 66ccf60..a153925 100644
--- a/apps/participation/templates/participation/team_detail.html
+++ b/apps/participation/templates/participation/team_detail.html
@@ -31,6 +31,17 @@
{% trans "Grant Animath to publish our video:" %}
{{ team.grant_animath_access_videos|yesno }}
+
+ {% trans "Authorizations:" %}
+
+ {% for student in team.students.all %}
+ {% if student.photo_authorization %}
+ {{ student }}{% if not forloop.last %},{% endif %}
+ {% else %}
+ {{ student }} ({% trans "Not uploaded yet" %}){% if not forloop.last %},{% endif %}
+ {% endif %}
+ {% endfor %}
+