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

{% trans "Volunteer" %} {{ volunteer.name }}

{% trans "Email:" %}
{{ volunteer.email }}
{% if volunteer.phone_number %}
{% trans "Phone number:" %}
{{ volunteer.phone_number }}{% if volunteer.sms_prefered %} (SMS){% endif %}
{% endif %}
{% trans "Secret link:" %}
{{ volunteer.token }}
{% if volunteer.notes %}

{% trans "Notes" %}

{{ volunteer.notes|linebreaksbr }}

{% endif %}

{% trans "Activities" %}

{% for activity in volunteer.activities.all %} {% if forloop.first %} {% trans "This volunteer applied for the following activities:" %} {% endif %} {% empty %} {% trans "This volunteer hasn't applied for any activities." %} {% endfor %}

{% trans "Messaging" %}

{% include 'mailing/_message_list.html' with messages=volunteer.conversation.message_set.all %} {% trans "Send a message" as message_form_title %} {% include 'mailing/_message_form.html' %} {% endblock %}