{% extends "checkout/checkout.html" %} {% load url from future %} {% load currency_filters %} {% load i18n %} {% block title %} {% trans "Shipping method" %} | {{ block.super }} {% endblock %} {% block checkout_nav %} {% include 'checkout/nav.html' with step=2 %} {% endblock %} {% block checkout_title %}{% trans "Shipping method" %}{% endblock %} {% block order_contents %}{% endblock %} {% block shipping_address %}{% endblock %} {% block payment_method %}{% endblock %} {% 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:basket.currency name=discount.name %} This includes a discount of {{ amount }} as your basket qualifies for the '{{ name }}' offer. {% endblocktrans %} {% endwith %} {% endif %}
{% if method.is_tax_known %} {{ method.charge_incl_tax|currency:basket.currency }} {% else %} {{ method.charge_excl_tax|currency:basket.currency }} {% endif %}
{% csrf_token %}
{% endfor %} {% endblock shipping_method %}