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

Volunteer Directory

Volunteers ({{ volunteers.paginator.count }})
{% for volunteer in volunteers %} {% empty %} {% endfor %}
Name Phone Email Interests
{{ volunteer.first_name }} {{ volunteer.last_name }} {% if volunteer.is_default_caller %} Default Caller {% endif %}
{% if volunteer.phone %} {% else %} - {% endif %} {{ volunteer.email }} {% for interest in volunteer.interests.all %} {{ interest.name }} {% empty %} No interests listed {% endfor %}

No volunteers found matching your search.

Add the first volunteer
{% if volunteers.paginator.num_pages > 1 %} {% endif %}
{% endblock %}