Fix table syntax (wasn't inside the <table> tags before)

This commit is contained in:
Kiril Kovachev 2024-10-24 12:54:05 +01:00
parent 66967811c1
commit 02a9187879

View File

@ -6,22 +6,21 @@
{% block content %}
<table>
<thead>
<tr>
<th>受験級</th>
<th>受験番号</th>
<th>氏名</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>{{ user_id }}</td>
<td>{{ user_name }}</td>
</tr>
</tbody>
</table>
<thead>
<tr>
<th>受験級</th>
<th>受験番号</th>
<th>氏名</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>{{ user_id }}</td>
<td>{{ user_name }}</td>
</tr>
</tbody>
<table><thead>
<tr>