Wrap tables in tbody
This commit is contained in:
parent
70a6221b0c
commit
3cb908e6ae
|
@ -3,6 +3,7 @@
|
|||
<div id="channels">
|
||||
<div class="content" style="max-height: 30em; overflow: auto;">
|
||||
<table class="table is-fullwidth is-hoverable">
|
||||
<tbody>
|
||||
{% for chan in chans %}
|
||||
<tr>
|
||||
<td>
|
||||
|
@ -23,6 +24,7 @@
|
|||
</td>
|
||||
</tr>
|
||||
{% endfor %}
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
|
@ -11,6 +11,7 @@
|
|||
<div id="nicks">
|
||||
<div class="content" style="max-height: 30em; overflow: auto;">
|
||||
<table class="table is-fullwidth is-hoverable">
|
||||
<tbody>
|
||||
{% for nick in nicks %}
|
||||
<tr>
|
||||
<td>
|
||||
|
@ -47,6 +48,7 @@
|
|||
</td>
|
||||
</tr>
|
||||
{% endfor %}
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
Loading…
Reference in New Issue