{% extends "oscar/checkout/checkout.html" %} {% load i18n %} {% load currency_filters %} {% block title %} {% trans "Payment details" %} | {{ block.super }} {% endblock %} {% block checkout_nav %} {% include 'oscar/checkout/nav.html' with step=3 %} {% endblock %} {% block checkout_title %}{% trans "Enter payment details" %}{% endblock %} {% block order_contents %}{% endblock %} {% block shipping_address %}{% endblock %} {% block shipping_method %}{% endblock %} {% block payment_method %}{% endblock %} {% block payment_details %} {% block payment_details_content %}
{% for method in providers %}
{% csrf_token %}

{% if method.code == 'sepa' %}SEPA-Bankeinzug{% else %}{{ method.name }}{% endif %}

{% if method.hint %}
{{ method.hint }}
{% endif %} {% if method.is_discounted %} {% blocktrans with amount=discount|currency:basket.currency name=method.discount_name %} This includes a discount of {{ amount }} as your basket qualifies for the {{ name }} offer. {% endblocktrans %} {% endif %}
{% if method.is_allowed %}
{{ method.as_ul }} {% if method.description %} {% endif %}
{% endif %}
{% if method.form and method.is_allowed %}
{{ method.form }}
{% endif %}
{% if method.is_allowed %} {% else %} {{ method.disallowed_reason }} {% endif %}
{% endfor %} {% if providers|length < max_providers %}
{% endif %}
{% endblock payment_details_content %} {% endblock payment_details %}