Wrap tables in tbody

This commit is contained in:
Mark Veidemanis 2022-07-21 19:16:59 +01:00
parent 70a6221b0c
commit 3cb908e6ae
Signed by: m
GPG Key ID: 5ACFCEED46C0904F
2 changed files with 58 additions and 54 deletions

View File

@ -3,6 +3,7 @@
<div id="channels"> <div id="channels">
<div class="content" style="max-height: 30em; overflow: auto;"> <div class="content" style="max-height: 30em; overflow: auto;">
<table class="table is-fullwidth is-hoverable"> <table class="table is-fullwidth is-hoverable">
<tbody>
{% for chan in chans %} {% for chan in chans %}
<tr> <tr>
<td> <td>
@ -23,6 +24,7 @@
</td> </td>
</tr> </tr>
{% endfor %} {% endfor %}
</tbody>
</table> </table>
</div> </div>
</div> </div>

View File

@ -11,6 +11,7 @@
<div id="nicks"> <div id="nicks">
<div class="content" style="max-height: 30em; overflow: auto;"> <div class="content" style="max-height: 30em; overflow: auto;">
<table class="table is-fullwidth is-hoverable"> <table class="table is-fullwidth is-hoverable">
<tbody>
{% for nick in nicks %} {% for nick in nicks %}
<tr> <tr>
<td> <td>
@ -47,6 +48,7 @@
</td> </td>
</tr> </tr>
{% endfor %} {% endfor %}
</tbody>
</table> </table>
</div> </div>
</div> </div>