42 lines
943 B
HTML
42 lines
943 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bulma@1.0.4/css/bulma.min.css">
|
|
<title>Employees</title>
|
|
</head>
|
|
|
|
<body>
|
|
<div class="container">
|
|
|
|
<div class="title pt-6">Employee list</div>
|
|
|
|
<table class="table is-striped is-bordered is-fullwidth">
|
|
|
|
<tr class="is-link">
|
|
<th>Id</th>
|
|
<th>First name</th>
|
|
<th>Family name</th>
|
|
<th>Badge number</th>
|
|
</tr>
|
|
|
|
|
|
{% for e in employees %}
|
|
<tr>
|
|
<td>{{ e.id }}</td>
|
|
<td>{{ e.first_name }}</td>
|
|
<td>{{ e.family_name }}</td>
|
|
<td>{{ e.badge_number }}</td>
|
|
|
|
|
|
{% endfor %}
|
|
</tr>
|
|
|
|
</table>
|
|
</div>
|
|
|
|
</body>
|
|
|
|
</html> |