Skip to content

Commit 55e997f

Browse files
committed
Fix invalid id tag in release report template (#1750)
1 parent 432038a commit 55e997f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

templates/admin/release_report_detail.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -474,9 +474,9 @@ <h2 class="mx-auto">New Libraries</h2>
474474
{% with bg_list=bg_list_str|split:"," %}
475475
{% for batch in batched_library_data %}
476476
{% with current_bg=bg_list|get_modulo_item:forloop.counter0 %}
477-
<div class="pdf-page flex flex-col {{ bg_color }}" id="library-{{item.library.display_name}}" style="background-image: url('{% static current_bg %}')">
477+
<div class="pdf-page flex flex-col {{ bg_color }}" style="background-image: url('{% static current_bg %}')">
478478
{% for item in batch %}
479-
<div class="grid grid-cols-3 gap-x-8 w-full p-4 h-1/2">
479+
<div class="grid grid-cols-3 gap-x-8 w-full p-4 h-1/2" id="library-{{ item.library.display_name }}">
480480
<div class="col-span-2 flex flex-col gap-y-4">
481481
<div class="flex flex-col gap-y-4">
482482
<h2 class="text-orange mb-1 mt-0">{{ item.library.display_name }}</h2>

0 commit comments

Comments
 (0)