scrapple/templates/staff_detail.html

20 lines
573 B
HTML
Raw Normal View History

2021-05-23 02:42:39 +00:00
{% extends "base.html" %}
{% block base %}
<div class="card fluid">
<h2 class="section">Employee Details for {{ employee.first }} {{ employee.last }}</h2>
<div class="section">
<dl>
<dt>Position</dt>
<dd id="position">{{ employee.position }}</dd>
2021-05-23 02:42:39 +00:00
<dt>Marital Status</dt>
<dd id="status">{{ employee.status }}</dd>
2021-05-23 02:42:39 +00:00
<dt>Number of Children</dt>
<dd id="children">{{ employee.children }}</dd>
2021-05-23 02:42:39 +00:00
<dt>Hired</dt>
<dd id="hired">{{ employee.hired }}</dd>
2021-05-23 02:42:39 +00:00
</dl>
</div>
</div>
{% endblock %}