Admin Subscriptions
{% with messages = get_flashed_messages(with_categories=true) %}
{% if messages %}
{% for category, message in messages %}
{{ message }}
{% endfor %}
{% endif %}
{% endwith %}
Subscription Plans
{% if plans %}
| ID |
Name |
Period |
Price |
Page Limit |
Actions |
{% for plan in plans %}
| {{ plan.id }} |
{{ plan.name }} |
{{ plan.period }} |
${{ plan.price }} |
{{ plan.page_limit }} |
|
{% endfor %}
{% else %}
No subscription plans found.
{% endif %}