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

Volunteer Directory

{% for volunteer in volunteers %} {% empty %} {% endfor %}
Name Email Phone Interests Actions
{{ volunteer.first_name }} {{ volunteer.last_name }} {{ volunteer.email }} {{ volunteer.phone|default:"-" }} {% for interest in volunteer.interests.all %} {{ interest.name }} {% empty %} No interests listed {% endfor %} View & Edit

No volunteers found matching your search.

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