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

{% trans "Subscribe to a workshop" %}

{% for talk in talks %} {% if forloop.first %}
{% endif %}

{{ talk.title }}

{{ talk.description }}

{% if talk.attendees_limit %}

{% blocktrans count remaining=talk.remaining_attendees %}{{ remaining }} remaining seat{% plural %}{{ remaining }} remaining seats{% endblocktrans %}

{% endif %} {% if talk.remaining_attendees != 0 or attendee in talk.attendees.all %}

{% if attendee in talk.attendees.all %} {% trans "Unregister" %} {% else %} {% trans "Register" %} {% endif %}

{% endif %}

{% if forloop.last %}
{% endif %} {% empty %} {% trans "There are no workshops requiring registration for now … come back later!" %} {% endfor %} {% endblock %}