{% extends "oscar/checkout/shipping_methods.html" %} {% load currency_filters %} {% load i18n %} {% block shipping_method %}

{% trans "Method" %}

{% trans "Cost" %}

{% for method in methods %}

{{ method.name }}

{% if method.description %}

{{ method.description|safe }}

{% endif %} {% if method.is_discounted %} {% with discount=method.get_discount %} {% blocktrans with amount=discount.discount|currency name=discount.name %} This includes a discount of {{ amount }} as your basket qualifies for the '{{ name }}' offer. {% endblocktrans %} {% endwith %} {% endif %}
{{ method.charge_incl_tax|currency }}
{% csrf_token %}
{% endfor %} {% endblock shipping_method %}