scrapple/templates/staff.html
2021-06-03 22:06:16 -04:00

30 lines
689 B
HTML

{% extends "base.html" %}
{% block base %}
<div class="card fluid">
<h1 class="section">Yoyodyne Propulsion Systems <small>Staff Roster</small></h1>
<div class="section">
<table id="employees">
<thead>
<tr>
<th>First Name</th>
<th>Last Name</th>
<th>Position Name</th>
<th>&nbsp;</th>
</tr>
</thead>
<tbody>
{% for e in employees %}
<tr>
<td>{{ e.first }}</td>
<td>{{ e.last }}</td>
<td>{{ e.position }}</td>
<td><a href="/staff/{{ e.id }}">Details</a></td>
</tr>
{% endfor %}
</tbody>
</table>
</div>
</div>
{% endblock %}