{% extends "base.html" %} {% block content %}
| Name | Phone | 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 |
||||