<<<<<<< HEAD {% extends "shop/base.html" %} {% load i18n %} {% block title %}{% trans "Payment Failed" %} - Fursuit Shop{% endblock %} {% block content %}

{% trans "Payment Failed" %}

{% trans "We're sorry, but there was a problem processing your payment." %}
{% trans "Please try again or choose a different payment method." %}

{% if order.payment_errors.exists %}
{% trans "Error Details" %}:
{% for error in order.payment_errors.all|slice:"-1:" %}

{{ error.error_message }}

{% endfor %}
{% endif %}
======= {% extends "shop/base.html" %} {% load i18n %} {% block title %}{% trans "Payment Failed" %} - Fursuit Shop{% endblock %} {% block content %}

{% trans "Payment Failed" %}

{% trans "We're sorry, but there was a problem processing your payment." %}
{% trans "Please try again or choose a different payment method." %}

{% if order.payment_errors.exists %}
{% trans "Error Details" %}:
{% for error in order.payment_errors.all|slice:"-1:" %}

{{ error.error_message }}

{% endfor %}
{% endif %}
>>>>>>> 5b9b867963eca600ed64b617dc2dc86c30dbd9cb {% endblock %}