{% extends "accounting/layout.html" %} {% block content %}

Employees which belong to you

{% for emp in employees %} {% endfor %}
# First name Last name Email Actions
{{ emp.id }} {{ emp.first_name }} {{ emp.last_name }} {{ emp.email }} Edit
Add an employee {% endblock content %}