{% extends "base.html" %} {% load juntagrico.config %} {% load i18n static %} {% block page_title %}

{% translate "Beitragsrunde:" %} {{ round.name }}

{% endblock %} {% block content %} {% if round.description %} {{ round.description|safe }} {% endif %} {% config "currency" as c_currency %} {% if form.contribution %}

{% blocktrans trimmed with contribution=form.contribution.price %} Bisheriges Gebot: {{ c_currency }} {{ contribution }} {% endblocktrans %}

{% endif %}
{% csrf_token %}
{% for selection in form.get_selections %} {% include 'jcr/snippets/option.html' with option=selection.selected_option %} {% endfor %} {% if round.other_amount %}

{% if form.other_amount.errors %} {% for error in form.other_amount.errors %}

{{ error }}

{% endfor %} {% endif %} {% trans "Wähle einen anderen Beitrag" %}
{% endif %}
{%if round.contact_me_text %}
{% endif %}
{% endblock %} {% block styles %} {% endblock %}