grabber/templates/employees.html

19 lines
393 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Employees</title>
</head>
<body>
<ul>{% for e in employees %}
<li>{{ e.first_name}} {{ e.last_name }} {{ e.badge_number }}</li>
{% endfor %}
</ul>
<ul>
<li>uhdziuuadza</li>
</ul>
</body>
</html>