{% extends "dances/base.html" %} {% load i18n %} {% load pagination_tags %} {% block head_title %}{% trans "Your dances" %}{% endblock %} {% block body %}

{% trans "Your dances" %}

{% if dances %}

{% trans "These are the dances you participate in." %}

{% autopaginate dances %}
{% for dance in dances %} {{ dance.name }}
{{ dance.slug }}
{{ dance.description|safe }}
{% endfor %}
{% paginate %} {% else %}

You are not a member of any dances yet.

{% endif %} {% endblock %}