|
Hello {{ user.first_name|default:user.username }},
{% if success %}
Thanks for your payment. Your plan is active and ready to use.
{% else %}
We could not process your payment. Please retry with the same card or use another payment method.
{% endif %}
Transaction Details
| Plan |
{{ transaction.plan.name|default:"N/A" }} |
| Amount |
{{ transaction.amount }} {{ transaction.currency }} |
| Transaction ID |
{{ transaction.charge_id }} |
| Date |
{{ transaction.created_at|date:"F d, Y H:i" }} |
| Status |
{{ transaction.get_status_display }}
|
|
{% if success %}
You can start using your subscription benefits immediately.
{% else %}
If this keeps failing, contact support and include your transaction ID.
{% endif %}
|