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

Volunteer Directory

Volunteers ({{ volunteers.paginator.count }})
{% for volunteer in volunteers %} {% empty %} {% endfor %}
Name Email Phone Interests
{{ volunteer.first_name }} {{ volunteer.last_name }} {{ volunteer.email }} {{ volunteer.phone|default:"-" }} {% 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 %}