{% extends "base.html" %} {% block title %}{{ 'staff'|t }} - {{ event.name }}{% endblock %} {% block content %}
| {{ 'name'|t }} | {{ 'email'|t }} | {{ 'status'|t }} | {{ 'actions'|t }} |
|---|---|---|---|
| {{ staff.first_name }} {{ staff.last_name }} | {{ staff.email }} | {% if staff.invite_used %} {{ 'active'|t }} {% else %} {{ 'invite_pending'|t }} {% endif %} | {{ 'edit'|t }} |
{{ 'no_staff_yet'|t }}
{% endif %}