{% extends "base.html" %} {% block content %}

Subscription Management

{% if success %}
{{ success }}
{% endif %} {% if error %}
{{ error }}
{% endif %}

Current Plan

{% if current_tier %}

{{ current_tier.name }}

{% if current_tier.is_default %} Free Tier {% endif %}

{{ current_tier.description if current_tier.description else '' }}{{ '' if current_tier.description else 'No description available' }}

{% if not current_tier.is_default %}
{{ currency_symbol }}{{ current_tier.price_monthly }} /month
or {{ currency_symbol }}{{ current_tier.price_yearly }}/year
{% endif %} Change Plan
{% if current_tier.max_requests_per_day == -1 %} ∞ {% elif current_tier.max_requests_per_day is not none %} {{ "{:,}".format(current_tier.max_requests_per_day) }} {% else %}∞{% endif %}
Requests per day
{% if current_tier.max_requests_per_month == -1 %} ∞ {% elif current_tier.max_requests_per_month is not none %} {{ "{:,}".format(current_tier.max_requests_per_month) }} {% else %}∞{% endif %}
Requests per month
{% if current_tier.max_providers == -1 %} ∞ {% else %} {{ current_tier.max_providers }} {% endif %}
Providers
{% if current_tier.max_rotations == -1 %} ∞ {% else %} {{ current_tier.max_rotations }} {% endif %}
Rotations
{% if subscription %}

Subscription Status

{{ subscription.status|title }} {% if subscription.expires_at %}
Renews: {{ subscription.expires_at }}
{% endif %}
{% if subscription.status == 'active' %} {% endif %}
{% endif %} {% endif %}

Quick Actions

Billing & Payments

Manage payment methods and view history

Upgrade Plan

View all available plans

Edit Profile

Update account settings

Change Password

Update security settings

{% if not payment_methods or payment_methods|length == 0 %}

No Payment Methods

Add a payment method to upgrade your plan and manage subscriptions

Go to Billing & Payment Methods
{% endif %} {% endblock %} {% block extra_css %} {% endblock %}