{% extends "base.html" %} {% load static i18n %} {% block title %}Participants - {{ block.super }}{% endblock %} {% block customCSS %} {% endblock %} {% block content %}

{% trans "Participants List" %}

{% if user.is_staff %} {% trans "Add New Participant" %} {% endif %}
{# Assuming this includes your search input and submit button #} {% include 'includes/search_form.html' %}
{% if search_query %}{% endif %}
{# Buttons Group (pushed to the right/bottom) #}
{% if job_filter or search_query %} {% trans "Clear" %} {% endif %}
{% if participants %}
{# View Switcher - list_id must match the container ID #} {% include "includes/_list_view_switcher.html" with list_id="participant-list" %} {# Table View (Default) #}
{% for participant in participants %} {% endfor %}
{% 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" }}
{% if user.is_staff %} {% endif %}
{# Card View #}
{% for participant in participants %}

{{ participant.email }}
{{ participant.phone|default:"N/A" }}
{{ participant.designation|default:"N/A" }}

{% trans "View" %} {% if user.is_staff %} {% trans "Edit" %} {% endif %}
{% endfor %}
{# Pagination #} {% include "includes/paginator.html" %} {% else %}

{% trans "No participants found" %}

{% trans "Create your first participant record or adjust your filters." %}

{% if user.is_staff %} {% trans "Add Participant" %} {% endif %}
{% endif %}
{# Delete Confirmation Modal #} {% endblock %} {% block customJS %} {% endblock %}