From 79ca88d9cac5a3eb817c332a67c6251e5d721ffc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Felix=20Sch=C3=A4fer?= <felix@thegcat.net> Date: Sun, 23 Jun 2019 20:41:44 +0200 Subject: [PATCH] Use th for the first cell in a row --- .../templates/pretix_public_registrations/front_page.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pretix_public_registrations/templates/pretix_public_registrations/front_page.html b/pretix_public_registrations/templates/pretix_public_registrations/front_page.html index dd70929..963b48c 100644 --- a/pretix_public_registrations/templates/pretix_public_registrations/front_page.html +++ b/pretix_public_registrations/templates/pretix_public_registrations/front_page.html @@ -13,7 +13,7 @@ <tbody> {% for pr in public_registrations %} <tr> - <td><img class="gravatar" src="{{ pr.gr_url }}" /></td> + <th scope="row"><img class="gravatar" src="{{ pr.gr_url }}" /></th> {% for f in pr.fields %} <td>{{ f }}</td> {% endfor %} -- GitLab