{% extends 'base/base.html' %} {% load static %} {% block title %}Payment Failed{% endblock %} {% block content %}

Payment Failed

❌ Payment Not Completed

There was an issue processing your payment, or the payment was cancelled.

{% if session_data and not session_data.error %}

Session Information

{% if session_data.amount_total %} {% endif %} {% if session_data.created %} {% endif %}
Attempted Amount {{ session_data.currency }} {{ session_data.amount_total|floatformat:2 }}
Session Created {{ session_data.created|date:"F j, Y g:i A" }}
{% if session_data.purchase_type == 'credit_product' %}

Cancelled Purchase

{% if session_data.product_name %}

Product: {{ session_data.product_name }}

{% endif %} {% if session_data.credit_amount %}

Credits (Not Purchased): {{ session_data.credit_amount }} credits

{% endif %} {% if session_data.product_description %}

Description: {{ session_data.product_description }}

{% endif %}
{% endif %}
{% if session_id %}

Session ID: {{ session_id }}

Reference this ID if you need to contact support about this issue.

{% endif %}
{% elif session_data.error %}

Session information unavailable: {{ session_data.error }}

{% if session_id %}

Session ID: {{ session_id }}

{% endif %}
{% endif %}

What you can do:

  • Check your payment method details and try again
  • Try a different payment method
  • Contact support if the problem persists
{% if session_data.purchase_type == 'credit_product' %} Try Credit Purchase Again {% else %} Try Again {% endif %} Go to Dashboard
{% endblock %}