{% extends "base.html" %} {% load static i18n %} {% block title %}Participants - {{ block.super }}{% endblock %} {% block customCSS %} {% endblock %} {% block content %}
| {% trans "Name" %} | {% trans "Email" %} | {% trans "Phone" %} | {% trans "Assigned Jobs" %} | {% trans "Designation" %} | {% trans "Created At" %} | {% trans "Actions" %} |
|---|---|---|---|---|---|---|
| {{ participant.name }} | {{ participant.email }} | {{ participant.phone|default:"N/A" }} | {# Iterate over the many-to-many relationship (jobs) #} {% for job in participant.jobs_participating.all %} {{ job.title }} {% empty %} {% trans "None Assigned" %} {% endfor %} | {{ 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 %}