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

{% trans "Become a volunteers!" %}

{% 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 %}