{% extends 'admin/base.html.twig' %} {% block title %}Livraison - {{ site.name }}{% endblock %} {% block body %}

Méthodes de livraison

Configurez les options de livraison pour votre boutique

{% if methods|length == 0 %}
{% endif %} Nouvelle méthode
{% for message in app.flashes('success') %} {% endfor %} {% for message in app.flashes('warning') %} {% endfor %} {% if methods|length == 0 %}
Aucune méthode de livraison configurée

Ajoutez des méthodes de livraison pour permettre à vos clients de choisir leur mode de livraison.

{% else %}
{% for method in methods %} {% endfor %}
Transporteur Nom Type Prix de base Livraison gratuite Délai Statut Actions
{% if method.carrier == 'colissimo' %} Colissimo {% elseif method.carrier == 'mondial_relay' %} 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 %}
{% endif %}
Retour à la boutique
{% endblock %}