{% 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 }}
{% endif %}
{% if volunteer.notes %}

{% trans "Notes" %}

{{ volunteer.notes|linebreaksbr }}

{% endif %}

{% trans "Activities" %}

{% for activity in volunteer.activities.all %} {% if forloop.first %} {% trans "The volunteer applied for following activities:" %} {% endif %} {% empty %} {% trans "The volunteer does not applied for any activities." %} {% endfor %} {% comment %}

{% trans "Messaging" %}

{% include 'mailing/_message_list.html' with messages=talk.conversation.message_set.all %} {% trans "Comment this talk – this message will be received by the staff team only" as message_form_title %} {% include 'mailing/_message_form.html' %} {% endcomment %} {% endblock %}