47 lines
924 B
HTML
47 lines
924 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Student Point Report Grade {{ grade }}</title>
|
|
<style>
|
|
/* zebra striping */
|
|
tr:nth-child(even) {
|
|
background-color: #f2f2f2;
|
|
}
|
|
/* table styling */
|
|
table {
|
|
border-collapse: collapse;
|
|
width: 100%;
|
|
}
|
|
th, td {
|
|
text-align: left;
|
|
padding: 8px;
|
|
border: 1px solid #ddd;
|
|
}
|
|
th {
|
|
background-color: #4CAF50;
|
|
color: white;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h1>Student Point Report Grade {{ grade }}</h1>
|
|
<p>Date: {{ date }}</p>
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<th>Name</th>
|
|
<th>Points</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for user in users %}
|
|
<tr>
|
|
<td>{{ user.name }}</td>
|
|
<td>{{ user.points }}</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
</body>
|
|
</html>
|