{% extends "tienda/base.html" %} {% load static %} {% block content %}

Métodos de Pago

💳 Tarjetas
➕ Añadir tarjeta
{% with has_card=False %} {% for metodo in metodos %}{% if metodo.method_type == 'card' %}
{{ metodo.label }} {% if metodo.is_default %}Predeterminada{% endif %}
{% csrf_token %}
{% endif %}{% endfor %} {% endwith %} {% if not cards_exist %}

No tienes tarjetas guardadas.

{% endif %}
🅿️ PayPal
➕ Añadir PayPal
{% for metodo in metodos %}{% if metodo.method_type == 'paypal' %}
{{ metodo.paypal_email }} {% if metodo.is_default %}Predeterminada{% endif %}
{% csrf_token %}
{% endif %}{% endfor %} {% if not paypal_exist %}

No tienes cuentas de PayPal guardadas.

{% endif %}
{% endblock %}