From 910a26612612c96b63487957fe0534a66aaaf1e5 Mon Sep 17 00:00:00 2001 From: Lars Eggert Date: Fri, 22 Sep 2023 20:50:43 +0300 Subject: [PATCH] fix: Prevent duplicate HTML IDs on photo page (#6356) * fix: Prevent duplicate HTML IDs on photo page Fixes #6355 * Just don't slugify the ID. See https://mathiasbynens.be/notes/html5-id-class --- ietf/templates/group/all_photos.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ietf/templates/group/all_photos.html b/ietf/templates/group/all_photos.html index d32cccb4e..41ecdbc79 100644 --- a/ietf/templates/group/all_photos.html +++ b/ietf/templates/group/all_photos.html @@ -8,7 +8,7 @@

{{ group_type | upper }} {{ role }} photos

{% regroup roles|dictsort:"last_initial" by last_initial as alphabet_blocks %} {% for letter in alphabet_blocks %} -

{{ letter.grouper }}

+

{{ letter.grouper }}

{% regroup letter.list by person as person_groups %} {# keep in sync with group_photos.html #}
@@ -17,4 +17,4 @@ {% endfor %}
{% endfor %} -{% endblock %} +{% endblock %} \ No newline at end of file