{% 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 %} {% if pending_tier_id %}

Pending plan change scheduled

Your plan will change to {{ pending_tier.name }} on {% if pending_date %}{{ pending_date.strftime('%B') }} {{ pending_date.day }}, {{ pending_date.year }}{% endif %}. You keep all current plan benefits until then.

{% endif %}

Current Plan

{{ tier.name }}

{{ tier.tagline }}

{% if tier.price_monthly > 0 %}

${{ tier.price_monthly }}/month

{% else %}

Free

{% endif %} {% if period_start %}

Since {{ period_start.strftime('%b') }} {{ period_start.day }}, {{ period_start.year }}

{% 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

Available Plans

{% for t in all_tiers %} {% set t_rank = tier_order.index(t.id) %} {% set current_rank = tier_order.index(tier_id) %} {% set is_current = (t.id == tier_id) %} {% set is_pending = (t.id == pending_tier_id) %} {% set is_upgrade = (t_rank > current_rank) %} {% set is_downgrade = (t_rank < current_rank) %}
{% if is_current %} Current {% elif is_pending %} Pending {% elif t.badge %} {{ t.badge }} {% endif %}

{{ t.name }}

{{ t.tagline }}

{% if t.price_monthly > 0 %}

${{ t.price_monthly }}/mo

{% else %}

Free

{% endif %}
    {% for feature in t.features[:3] %}
  • {{ feature }}
  • {% endfor %} {% if t.features | length > 3 %}
  • + {{ (t.features | length) - 3 }} more
  • {% endif %}
{% if is_current and not pending_tier_id %} Your current plan {% elif is_current and pending_tier_id %} {% elif is_upgrade %} {% if t.id == 'business' %} Contact Sales {% else %} {% endif %} {% elif is_pending %} {% else %} {% endif %}
{% endfor %}

Upgrades take effect immediately. Downgrades are scheduled for the end of your current billing period.

{% endif %}
Back to Dashboard
{% endblock %}