Shipping rates
The basket.shipping_rates object has the following attributes:
{% for rate in basket.shipping_rates %} {{ rate.name }} {{ currency_value(rate.price) }} {% endfor %}
returns...
Next day delivery £9.95 Super-saver delivery £4.95
rate.name
Returns the name of the shipping rate.
rate.price
Returns the cost of the shipping rate.
rate.id
Returns the ID of the shipping rate.