{% extends "layout.html" %} {% block title %}Subscription Details - Trade Signals{% endblock %} {% block content %}
| Transaction ID | Amount | Payment Method | Reference Number | Status | Date |
|---|---|---|---|---|---|
| #{{ transaction.id }} | Rs {{ "%.2f"|format(transaction.amount) }} | {{ transaction.payment_method or 'N/A' }} | {{ transaction.payment_reference or 'N/A' }} | {% if transaction.status == 'completed' %} Completed {% elif transaction.status == 'pending' %} Pending {% elif transaction.status == 'failed' %} Failed {% else %} {{ transaction.status|title }} {% endif %} | {{ transaction.created_at.strftime('%d-%m-%Y %H:%M') if transaction.created_at else 'N/A' }} |
Your subscription is active. You can now access trading signals for this package.
View SignalsYour subscription is pending admin approval. Signals will be available once approved.
Your subscription has been rejected. Please contact support if you have questions.