{% extends "admin_base.html" %} {% block title %}Subscriptions{% endblock %} {% block page_title %}Subscription Management{% endblock %} {% block page_description %}Monitor and manage all tenant subscriptions{% endblock %} {% block content %}
Clear
Subscriptions ({{ page_obj.paginator.count }})
{% if page_obj %}
{% for subscription in page_obj %} {% endfor %}
Tenant Plan Amount Period Status Created Actions
{{ subscription.tenant.name }}
{{ subscription.tenant.slug }}
{{ subscription.get_plan_display }}
KES {{ subscription.amount|floatformat:0 }}
{{ subscription.start_date|date:"M d, Y" }}
to {{ subscription.end_date|date:"M d, Y" }}
{{ subscription.get_payment_status_display }}
{{ subscription.created_at|date:"M d, Y" }}
{{ subscription.created_at|timesince }} ago
{% if subscription.payment_status == 'pending' %} {% endif %}
{% if page_obj.has_other_pages %} {% endif %} {% else %}
No subscriptions found

Subscriptions will appear here as tenants upgrade.

{% endif %}
{% endblock %} {% block extra_js %} {% endblock %}