Я работаю над проектом django-bootstrap
, и у меня возникли проблемы с нумерацией таблиц bootstrap, она не появится в моем шаблоне. Я использую одну из стандартных таблиц bootstrap со своими собственными стилями, и я хотел попросить вас, ребята, за вашу помощь, чтобы дать моему столу нумерацию страниц, которая ему нужна.
<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>