{% extends 'base.html' %} {% load i18n %} {% block volunteerstab %} class="active"{% endblock %} {% block content %}

{% trans "Your information" %}

{% trans "Email:" %}
{{ volunteer.email }}
{% trans "Phone number:" %}
{% if volunteer.phone_number %} {{ volunteer.phone_number }}{% if volunteer.sms_prefered %} (SMS){% endif %} {% else %} {% trans "not provided" context "phone number" %} {% endif %}
{% if volunteer.notes %}
{% trans "Notes:" %}
{{ volunteer.notes|linebreaksbr }}
{% endif %}

{% trans "Activities" %}

{% for activity in activities %} {% if forloop.first %}
{% endif %}

{{ activity.name }}

{{ activity.description }}

{% if volunteer not in activity.volunteers.all %} {% trans "I will be happy to help on that!" %} {% else %} {% trans "Sorry, I have a setback" %} {% endif %}

{% if forloop.last %}
{% endif %} {% endfor %} {% endblock %}