{% extends "base.html" %} {% load static i18n %} {% block title %}Participants - {{ block.super }}{% endblock %} {% block customCSS %} {% endblock %} {% block content %}
| {% trans "Name" %} | {% trans "Email" %} | {% trans "Phone" %} | {% trans "Designation" %} | {% trans "Created At" %} | {% trans "Actions" %} |
|---|---|---|---|---|---|
| {{ participant.name }} | {{ participant.email }} | {{ participant.phone|default:"N/A" }} | {{ participant.designation|default:"N/A" }} | {{ participant.created_at|date:"d-m-Y" }} |
{{ participant.email }}
{{ participant.phone|default:"N/A" }}
{{ participant.designation|default:"N/A" }}
{% trans "Create your first participant record or adjust your filters." %}
{% if user.is_staff %} {% trans "Add Participant" %} {% endif %}