{% extends "dashboard/base.html" %} {% load i18n %} {% load prices_i18n %} {% load status %} {% block title %}{% trans "Shipping methods" %} - {{ block.super }}{% endblock %} {% block body_class %}body-shipping-methods{% endblock %} {% block menu_delivery_class %}active{% endblock %} {% block breadcrumbs %} {% endblock %} {% block header_extra %}
{% endblock %} {% block content %} {% if shipping_methods %}
{% for method in shipping_methods %} {% endfor %}
{% trans "Name" %} {% trans "Price range" %} {% trans "Countries" %}
{{ method }} {% if not method.price_range %} - {% elif method.price_range.min_price == method.price_range.max_price %} {% gross method.price_range.min_price %} {% else %} {% gross method.price_range.min_price %} - {% gross method.price_range.max_price %} {% endif %} {{ method.countries|join:", " }}
{% include "dashboard/includes/_pagination.html" %} {% else %}

{% trans "No shipping methods found." %}

{% endif %} {% endblock %}