{% extends "_market/_layouts/main" %} {% set title = 'Shipping'|t('market') %} {% set breadcrumbs = [ { url: url('market/shipping'), label: title } ] %} {% block header %}

{{ title }}

{# Actions #}
{# New shipping profile #}
{% endblock %} {% block main %} {% set profiles = currentVendor.getShippingProfiles(true) %} {% if profiles %}
{% for profile in profiles %} {% endfor %}
Name Processing Time
{{ profile.name }} {{ profile.getProcessingTimeLabel() }}
{% else %} {# No profiles at all yet #}
{# Heroicon name: light-bulb #}

Nothing here …

You don’t have any shipping profiles yet, go ahead and create one!

{% endif %} {% endblock %}