{% extends 'admin/base.html.twig' %} {% block title %}Livraison - {{ site.name }}{% endblock %} {% block body %}
Configurez les options de livraison pour votre boutique
Ajoutez des méthodes de livraison pour permettre à vos clients de choisir leur mode de livraison.
| Transporteur | Nom | Type | Prix de base | Livraison gratuite | Délai | Statut | Actions | |
|---|---|---|---|---|---|---|---|---|
|
|
{% if method.carrier == 'colissimo' %}
{% elseif method.carrier == 'mondial_relay' %}
{% endif %}
{{ method.carrierName }}
|
{{ method.name }}
{% if method.description %}
{{ method.description|length > 50 ? method.description|slice(0, 50) ~ '...' : method.description }} {% endif %} |
{% if method.deliveryType == 'home' %} Domicile {% else %} Point relais {% endif %} | {{ method.basePrice|number_format(2, ',', ' ') }} € | {% if method.freeShippingThreshold %} dès {{ method.freeShippingThreshold|number_format(2, ',', ' ') }} € {% else %} - {% endif %} | {% if method.estimatedDelivery %} {{ method.estimatedDelivery }} {% else %} - {% endif %} |
|