Fix a regression in bookshelf properties

This commit is contained in:
2024-12-23 02:15:15 +01:00
parent f2b817103f
commit 11515d79ef

View File

@@ -115,7 +115,7 @@
</tr> </tr>
</tbody> </tbody>
</table> </table>
{% if book_properties %} {% if properties %}
<table class="table table-striped"> <table class="table table-striped">
<thead> <thead>
<tr> <tr>
@@ -123,7 +123,7 @@
</tr> </tr>
</thead> </thead>
<tbody class="table-group-divider"> <tbody class="table-group-divider">
{% for p in book_properties %} {% for p in properties %}
<tr> <tr>
<th class="w-33" scope="row">{{ p.property }}</th> <th class="w-33" scope="row">{{ p.property }}</th>
<td>{{ p.value }}</td> <td>{{ p.value }}</td>