{% extends "base.html" %} {% load static %} {% block content %}

{{ event.name|default:event.event_type }}

Edit Event Info
Event Details
{{ event.event_type }}
{{ event.date|date:"F d, Y" }}
{% if event.start_time %} {{ event.start_time|time:"g:i A" }} {% if event.end_time %} - {{ event.end_time|time:"g:i A" }}{% endif %} {% else %} Not specified {% endif %}

{{ event.description|default:"No description provided." }}

Participants ({{ participations.count }})
{% for p in participations %} {% empty %} {% endfor %}
Voter Name Status Actions
{{ p.voter.first_name }} {{ p.voter.last_name }} {{ p.participation_status.name }}
No participants yet.
{% endblock %}