Having some difficulty implementing table pagination in a django-bootstrap
project. The bootstrap's table pagination feature is not displaying on my template as expected. I am using one of the default bootstrap tables with custom styles, and seeking assistance on how to properly add pagination to my table.
<table id="table1" class="table table-bordered table-striped" style="width:1200px; margin-left:-45px">
<thead>
<tr>
<th class="header1"> </th>
<th class="header1">ID Riesgo</th>
<th class="header1">Código Riesgo</th>
<th class="header1">Característica</th>
<th class="header1">Evento</th>
</tr>
</thead>
<tbody>
{% for riesgos in riesgos %}
<tr style="height: -2px;">
<td style="text-align:center;">
<div class name="checkboxWrapper">
<input type="checkbox" id="check" hidden="true" style="margin-top: 10px;" />
<label for="check" class="checkmark"></label>
</div>
</td>
<td style="color:#A9A9A9 ;">{{riesgos.id_ri}}</td>
<td style="color:#A9A9A9;">{{riesgos.cod_ri}}</td>
<td style="color:#A9A9A9;">{{riesgos.caracterisitica}}</td>
<td style="color:#A9A9A9;">{{riesgos.evento}}</td>
{% endfor %}
</tr>
</tbody>
</table>