{% extends "base.html" %} {% block title %}Accounts ยท Face Attendance{% endblock %} {% block content %}
{% if accounts %}
{% for account in accounts %} {% endfor %}
Name Username Email Role Status Actions
{{ account.full_name }} {{ account.username }} {{ account.email }} {{ account.role|title }} {{ "Active" if account.active else "Inactive" }} {% if account.id != current_user.id %}
{% endif %}
{% else %}
No staff accounts exist yet.
{% endif %}
{% endblock %}