{% extends "base.html" %} {% block title %}My Subscription – DocuElevate{% endblock %} {% block content %}

My Subscription

Your current plan, usage and available upgrades.

{% if not multi_user_enabled %}

Multi-user mode is not enabled.

Subscription tiers apply when multi-user mode is active. Your instance currently runs in single-user mode with no processing limits. An admin can enable multi-user mode via Settings.

{% else %}

Current Plan

{{ tier.name }}

{{ tier.tagline }}

{% if tier.price_monthly > 0 %}

${{ tier.price_monthly }}/month

{% else %}

Free

{% endif %}
{% if usage %}

Usage

{{ usage.lifetime }}

Total files (lifetime)

{% if tier.lifetime_file_limit > 0 %}
{% set lifetime_pct = ((usage.lifetime / tier.lifetime_file_limit) * 100) | int %}

{{ usage.lifetime }} / {{ tier.lifetime_file_limit }}

{% else %}

Unlimited

{% endif %}

{{ usage.today }}

Files today

{% if tier.daily_upload_limit > 0 %}
{% set today_pct = ((usage.today / tier.daily_upload_limit) * 100) | int %}

{{ usage.today }} / {{ tier.daily_upload_limit }} today

{% else %}

Unlimited

{% endif %}

{{ usage.month }}

Files this month

{% if tier.monthly_upload_limit > 0 %}
{% set month_pct = ((usage.month / tier.monthly_upload_limit) * 100) | int %}

{{ usage.month }} / {{ tier.monthly_upload_limit }} this month

{% else %}

Unlimited

{% endif %}
{% endif %}

What's included in your plan

{% set tier_order = ['free', 'starter', 'professional', 'business'] %} {% set current_index = tier_order.index(tier_id) %} {% set upgrade_tiers = all_tiers | selectattr('id', 'ne', tier_id) | list %} {% if tier_id != 'business' %}

Upgrade your plan

{% for t in all_tiers %} {% if tier_order.index(t.id) > current_index %}
{{ t.name }} {% if t.badge %} {{ t.badge }} {% endif %}

{{ t.tagline }}

{% if t.price_monthly > 0 %}

${{ t.price_monthly }}/mo

{% endif %}
    {% for feature in t.features[:4] %}
  • {{ feature }}
  • {% endfor %} {% if t.features | length > 4 %}
  • + {{ (t.features | length) - 4 }} more features
  • {% endif %}
{% if t.id == 'business' %} Contact Sales {% else %} Upgrade to {{ t.name }} {% endif %}
{% endif %} {% endfor %}
{% endif %} {% endif %}
Back to Dashboard
{% endblock %}