{% extends 'cfp/staff/base.html' %} {% load bootstrap3 i18n %} {% block volunteersstafftab %} class="active"{% endblock %} {% block content %}

{% trans "Volunteers" %}

{% trans "Show filtering options…" %}

{% bootstrap_form filter_form %}
{% for volunteer in volunteer_list %} {% if forloop.first %} {% endif %} {% if forloop.last %} {% endif %} {% endfor %}
{% trans "Total:" %} {{ volunteer_list|length }} {% trans "volunteer" %}{{ volunteer_list|length|pluralize }}
{% trans "Name" %} {% trans "Email" %} {% trans "Phone" %} {% trans "Activities" %}
{% trans "contact by email" %} | {% trans "download as csv" %}
{{ volunteer.name }} {% if volunteer.notes %}{% endif %} {{ volunteer.email }} {{ volunteer.phone_number }}{% if volunteer.sms_prefered %} (SMS){% endif %} {% for activity in volunteer.activities.all %} {{ activity }} {% endfor %}
{% endblock %} {% block js_end %} {% endblock %}