Add pagination nav

This commit is contained in:
Santiago L 2024-01-30 12:55:18 +01:00
parent aea944a732
commit 849af04e4b
1 changed files with 7 additions and 0 deletions

View File

@ -7,6 +7,12 @@
<p class="service-description">{{ service.description }}</p>
<table class="table service-list">
<colgroup>
<col span="1" style="width: 35%;">
<col span="1" style="width: 10%;">
<col span="1" style="width: 25%;">
<col span="1" style="width: 30%;">
</colgroup>
<thead class="thead-dark">
<tr>
<th scope="col">{% trans "Name" %}</th>
@ -49,6 +55,7 @@
</tr>
{% endfor %}
</tbody>
{% include "musician/components/table_paginator.html" %}
</table>
{% endblock %}