{% extends "lfs/base.html" %} {% load i18n lfs_tags lfs_portlets_tags %} {% load url from future %} {% block title %} {{ SHOP.get_meta_title }} - Pago en OXXO. {% endblock %} {% block section %}comments{% endblock %} {% block content %} {# Note: when you upgrade to Django > 1.4 please replace the multiple ifs with elif #} {% if transaction.payment_status == 'PENDING' %} {% if transaction.payment_type == 'OXXO' %}
{{ SHOP.get_meta_title }}
{% endif %} {% if transaction.payment_type == 'SEVEN_ELEVEN' %}{{ SHOP.get_meta_title }}
{% endif %} {% if transaction.payment_type == 'EXTRA' %}{{ SHOP.get_meta_title }}
{% endif %} {% if transaction.payment_type == 'CHEDRAUI' %}{{ SHOP.get_meta_title }}
{% endif %} {% if transaction.payment_type == 'ELEKTRA' %}{{ SHOP.get_meta_title }}
{% endif %} {% if transaction.payment_type == 'COPPEL' %}{{ SHOP.get_meta_title }}
{% endif %} {% if transaction.payment_type == 'FARMACIA_BENAVIDES' %}{{ SHOP.get_meta_title }}
{% endif %} {% if transaction.payment_type == 'FARMACIA_ESQUIVAR' %}{{ SHOP.get_meta_title }}
{% endif %} {% endif %} {% if transaction.payment_status == 'SUCCESS' %}Tu pago en OXXO ya ha sido aplicado. Muchas gracias por su compra.
{{ SHOP.get_meta_title }}
{% endif %} {% if transaction.payment_status == 'DECLINED' %}Lo sentimos mucho pero tu pago en OXXO ha sido declinado.
Ponte en contacto con nosotros para ver otras alternativas de pago.
{{ SHOP.get_meta_title }}
{% endif %} {% if transaction.payment_status == 'DELETED' %}Ponte en contacto con nosotros para ver otras alternativas de pago.
{{ SHOP.get_meta_title }}
{% endif %} {% if transaction.payment_status == 'EXPIRED' %}Ponte en contacto con nosotros para ver otras alternativas de pago.
{{ SHOP.get_meta_title }}
{% endif %} {% endblock %}