{% extends "checkout/checkout.html" %} {% load currency_filters %} {% load i18n %} {% load shipping_tags %} {% block title %} {% trans "Shipping method" %} | {{ block.super }} {% endblock %} {% block checkout_nav %} {% include 'checkout/nav.html' with step=2 %} {% endblock %} {% block checkout_title %}{% endblock %} {% block order_contents %}{% endblock %} {% block shipping_address %}{% endblock %} {% block payment_method %}{% endblock %} {% block shipping_address_preview %}{% endblock %} {% block shipping_method %}

{% trans 'Shipping Method' %}

{% for method in methods %}

{{ method.name }}

{% shipping_charge method basket as charge %} {% if charge.is_tax_known %} {{ charge.incl_tax|currency:basket.currency }} {% else %} {{ charge.excl_tax|currency:basket.currency }} {% endif %}
{% if method.description %} {{ method.description|safe }} {% endif %}
{% if method.is_discounted %}
{% shipping_charge_discount method basket as discount %} {% 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 %}
{% csrf_token %}
{% endfor %}
{% endblock shipping_method %}