30 lines
674 B
HTML
30 lines
674 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>
|
|
<thead>
|
|
<tr>
|
|
<th>First Name</th>
|
|
<th>Last Name</th>
|
|
<th>Position Name</th>
|
|
<th> </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 %}
|