{% extends "base.html" %} {% block content %}
Add a credit card to enable automatic subscription renewals.
{% if 'stripe' in enabled_gateways %} {% endif %}| Date | Description | Amount | Method | Status | Actions |
|---|---|---|---|---|---|
|
{{ tx.created_at.split(' ')[0] if tx.created_at else '' }}
{{ tx.created_at.split(' ')[1] if tx.created_at else '' }}
|
{% if tx.description %}
{{ tx.description }}
{% else %}
Plan Payment
{% endif %}
{% if tx.plan_name %}
{{ tx.plan_name }}
{% endif %}
|
{% if tx.currency_symbol %} {{ tx.currency_symbol }} {% else %} $ {% endif %} {{ tx.amount }} |
{% if tx.payment_method == 'paypal' %}
PayPal {% elif tx.payment_method == 'stripe' %} Credit Card {% elif tx.payment_method == 'bitcoin' %} Bitcoin {% elif tx.payment_method == 'eth' or tx.payment_method == 'ethereum' %} Ethereum {% elif tx.payment_method == 'usdt' %} USDT {% elif tx.payment_method == 'usdc' %} USDC {% else %} {{ tx.payment_method|title }} {% endif %} |
{% if tx.status == 'completed' %} ✓ Completed {% elif tx.status == 'pending' %} ⏳ Pending {% elif tx.status == 'failed' %} ✗ Failed {% elif tx.status == 'refunded' %} ↩ Refunded {% else %} {{ tx.status|title }} {% endif %} | {% if tx.invoice_id %} Invoice {% endif %} |
You don't have any payment transactions on your account.
Upgrade your plan to get started!
View Plans & Pricing