{% extends 'base.html.twig' %} {% block body_class %}checkout-checkout{% endblock %} {% block body %}

Cammande

Choisir une option:

{% if app.user %} {% else %}

En créant un compte, vous pourrez faire vos achats plus rapidement, être au courant du statut d’une commande et suivre les commandes que vous avez précédemment passées.

{% endif %} {##}

Se Connecter

{{ render(controller('CRMBundle:Security:login')) }}

{% if app.user %} Etape 3: Details Compte {% else %} Etape 3: Details Compte {% endif %}

{% if (app.user) %} {{ include('@Frontend/tiers/edit_tier_passager.html.twig', {'tier':tier }) }} {% endif %}
{{ form_start(form, {'attr': {'style': 'padding:0px!important;' }}) }}

{% if app.user %} {% if(app.user.tier ) %} Etape 4: Adresse de livraison {% else %} Etape 4: Adresse de livraison{% endif %} {% else %} Etape 4: Adresse de livraison {% endif %}

Vous pouvez modifier l’adresse de livraison de la commande avant de confirmer votre commande.

Nouveau lieu de livraison

{{ form_widget(form.lieuliv, {'attr': {'class': 'form-control' ,'rows':3 }}) }}

Etape 5: Confirmation Commande

{% for art in articles %} {% endfor %}
Produit Quantité Prix Unitaire Remise Total HT
{{ art['article'] }} {{ (app.session.get('panier'))[art['idart']] }} {{ (art['put'])|localizedcurrency('TND') }} {% if(art['remise']) %} {{ art['remise'] }} % {% endif %} {{ (art['ttc'])|localizedcurrency('TND') }}
Total-HT: {{ (totals['tpunit'])|localizedcurrency('TND') }}
Taxe {{ totals['tva'] }} %
Total-TTC: {{ (totals['ttc'])|localizedcurrency('TND') }}
J'ai lu et j'accepte les conditions d'utilisation  
{{ form_end(form) }}
{% endblock %}