{% extends 'dashboard/base.html' %} {% load static %} {% load humanize %} {% block title %}Billing & Subscription - Peza API{% endblock %} {% block breadcrumb %}Billing & Subscription{% endblock %} {% block content %}

Billing & Subscription

Manage your subscription plan and billing information

Current Subscription

Your active plan and usage details

{% if subscription and subscription.active %} Active {% else %} Inactive {% endif %}
{% if plan %}
Plan Name
{{ plan.name }}
Monthly Price
MWK {{ plan.price_monthly|intcomma }}
API Requests
{{ limit|intcomma }}/month
{% if subscription.current_period_end %}
Renewal Date
{{ subscription.current_period_end|date:"M d, Y" }}
{% endif %}

Plan Description

{{ plan.description }}

Upgrade Plan {% if subscription and subscription.active %}
{% csrf_token %}
{% endif %}
{% else %}

No Active Subscription

You're currently on the free tier with limited features

Browse Plans
{% endif %}
{% endblock %}