Fixed bug with disappearance of table rows in control page at start

This commit is contained in:
Yuriy Kulakov
2021-03-12 14:54:57 +03:00
parent abe44fec5f
commit c1a10b6f2c
4 changed files with 15 additions and 12 deletions

View File

@@ -50,7 +50,7 @@
<th>Checked</th>
</thead>
<tbody id="table">
<tbody id="old_tbody">
{% for user in users %}
<tr>
<td><a href="#">{{ user.name }}</a></td>
@@ -60,6 +60,7 @@
</tr>
{% endfor %}
</tbody>
<tbody id="new_tbody"></tbody>
</table>
{% endblock%}