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

{% trans "Enrole as volunteer" %}

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

{{ activity.name }}

{{ activity.description }}

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

{% if forloop.last %}
{% endif %} {% empty %} {% trans "We are not yet looking for volunteers … come back later!" %} {% endfor %} {% endblock %}