{% 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 %}
{% if event.location_name %}{{ event.location_name }}
{% endif %} {% if event.address %} {{ event.address }}
{{ event.city }}{% if event.city and event.state %}, {% endif %}{{ event.state }} {{ event.zip_code }} {% elif event.city or event.state or event.zip_code %} {{ event.city }}{% if event.city and event.state %}, {% endif %}{{ event.state }} {{ event.zip_code }} {% else %} No location provided. {% endif %}
{% if event.latitude and event.longitude %}
{{ event.latitude }}, {{ event.longitude }}
{% endif %}

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

Volunteers ({{ volunteers.count }})
{% for v in volunteers %} {% empty %} {% endfor %}
Volunteer Role
{{ v.volunteer.first_name }} {{ v.volunteer.last_name }} {{ v.role }}
{% csrf_token %}
No volunteers assigned.
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 %}