attendance.html
538 Bytes
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Attendance</title>
<table>
<thead>
<tr>
<th>학번</th>
<th>이름</th>
<th>출결</th>
</tr>
</thead>
<tbody>
{% for row in output_data %}
<tr>
<td>{{row['student_id']}}</td>
<td>{{row['student_name']}}</td>
<td>{{row['status']}}</td>
</tr>
{% endfor %}
</tbody>
</table>