{% extends 'base.html' %} {% load crispy_forms_tags %} {% block title %}Manage Staff{% endblock %} {% block content %}

Manage Staff Users

Add New Staff

{% csrf_token %} {{ form|crispy }}

Existing Staff Users

{% for staff in staff_users %} {% empty %} {% endfor %}
Username Email Actions
{{ staff.username }} {{ staff.email }} Edit Delete
No staff users found.
{% endblock %}