{% extends "base.html" %} {% load i18n %} {% load config %} {% block all_page_title %} {% vocabulary "subscription" as v_subscription %}

{% blocktrans %}Wähle deine {{ v_subscription }}-Grösse{% endblocktrans %}

{% endblock %} {% block allcontent %} {% config "organisation_name" as c_organisation_name %} {% config "currency" as c_currency %} {% vocabulary "member_type" as v_member_type %} {% vocabulary "member_type_pl" as v_member_type_pl %} {% vocabulary "subscription" as v_subscription %} {% config "enable_shares" as c_enable_shares %}
{% csrf_token %} {% for p in products %}
{{ p.name }}
{{ p.description }}
{% for ss in p.sizes.all %}
{{ ss.long_name }}
{{ ss.description }}
{% for type in ss.types.all %} {% if type.visible %}
{% endif %} {% endfor %} {% endfor %} {% endfor %}
Kein {% vocabulary "subscription" %}
{% trans "Abbrechen" %}
{% endblock %}