{% extends "base.html" %} {% block title %}{% if multi_user_enabled and not is_logged_in %}DocuElevate – Intelligent Document Processing{% else %}Dashboard – DocuElevate{% endif %}{% endblock %} {% block content %}
{% if multi_user_enabled and not is_logged_in %} {# ══════════════════════════════════════════════════════════════════════════ #} {# PUBLIC LANDING PAGE (multi-user, visitor not signed in) #} {# ══════════════════════════════════════════════════════════════════════════ #}
Intelligent Document Processing

From upload to insight — automatically.

DocuElevate ingests your documents, runs OCR, extracts metadata with AI, and routes files to Dropbox, Google Drive, OneDrive, S3, Nextcloud, and more — all in one seamless pipeline.

{% if allow_signup %} Get Started — it's free {% else %} Log In {% endif %} View Plans & Pricing

Everything you need for smart document workflows

OCR & Text Extraction

Azure Document Intelligence converts scanned PDFs and images into fully searchable text automatically.

AI Metadata Extraction

OpenAI, Claude, Gemini, and other pluggable AI providers classify documents and pull out key fields like dates, amounts, and subjects.

Multi-Cloud Storage

Route processed files to Dropbox, Google Drive, OneDrive, Amazon S3, Nextcloud, Paperless NGX, WebDAV, FTP/SFTP, and more.

Email & IMAP Ingestion

Automatically pull documents from Gmail or any IMAP mailbox — no manual uploads needed.

Full-Text Search

Instantly find any document by content, metadata, or tags across your entire archive.

Custom Pipelines

Build processing pipelines with configurable steps — OCR, AI extraction, format conversion, and storage routing in any order.

Ready to elevate your document workflow?

Join teams already automating their document processing with DocuElevate.

{% if allow_signup %} Create a free account {% else %} Log In {% endif %} See pricing
{% elif multi_user_enabled %} {# ══════════════════════════════════════════════════════════════════════════ #} {# MULTI-USER / SAAS DASHBOARD (logged-in user) #} {# ══════════════════════════════════════════════════════════════════════════ #}

DocuElevate

Intelligent document processing & management — built for teams

{% if is_admin %}

Platform overview

{{ stats.processed_files | default(0) }}

Total files

{{ stats.files_today | default(0) }}

Files today

{{ stats.files_month | default(0) }}

Files this month

{{ stats.unique_users | default(0) }}

Active users

{% endif %} {% if user_tier and user_usage %}

My usage

{{ user_tier.name }} Plan {% if user_tier.id != 'business' %} Upgrade {% endif %}
View full details →
Lifetime files {{ user_usage.lifetime }}{% if user_tier.lifetime_file_limit > 0 %} / {{ user_tier.lifetime_file_limit }}{% endif %}
{% if user_tier.lifetime_file_limit > 0 %} {% set pct = ([((user_usage.lifetime / user_tier.lifetime_file_limit) * 100) | int, 100] | min) %}
{% else %}
Unlimited
{% endif %}
Files today {{ user_usage.today }}{% if user_tier.daily_upload_limit > 0 %} / {{ user_tier.daily_upload_limit }}{% endif %}
{% if user_tier.daily_upload_limit > 0 %} {% set pct = ([((user_usage.today / user_tier.daily_upload_limit) * 100) | int, 100] | min) %}
{% else %}
Unlimited
{% endif %}
Files this month {{ user_usage.month }}{% if user_tier.monthly_upload_limit > 0 %} / {{ user_tier.monthly_upload_limit }}{% endif %}
{% if user_tier.monthly_upload_limit > 0 %} {% set pct = ([((user_usage.month / user_tier.monthly_upload_limit) * 100) | int, 100] | min) %}
{% else %}
Unlimited
{% endif %}
{% endif %}

Processing Stats

  • Total processed {{ stats.processed_files | default(0) }}
  • Files with OCR {{ stats.files_with_ocr | default(0) }}
  • Today {{ stats.files_today | default(0) }}
  • This month {{ stats.files_month | default(0) }}
{% if user_tier and user_tier.id != 'business' %}

Upgrade your plan

Unlock more documents, more destinations and priority support.

  • Higher daily & monthly limits
  • More storage destinations
  • More OCR pages
View plans & pricing
{% else %}

Integrations

Active integrations {{ stats.active_integrations | default(0) }}
Storage targets {{ stats.storage_targets | default(0) }}
View system status
{% endif %}
{% else %} {# ══════════════════════════════════════════════════════════════════════════ #} {# SINGLE-USER DASHBOARD (original layout, preserved as-is) #} {# ══════════════════════════════════════════════════════════════════════════ #}

DocuElevate Dashboard

Intelligent document processing & management

{{ stats.processed_files | default(0) }}

Documents Processed

{{ stats.active_integrations | default(0) }}

Active Integrations

{{ stats.storage_targets | default(0) }}

Storage Targets

Capabilities

  • OCR & metadata extraction with AI
  • Cloud storage: Dropbox, OneDrive, Google Drive, NextCloud
  • Paperless-ngx integration for document management
  • Email & URL-based document ingestion
  • Automated classification & routing workflows

Getting Started

  1. 1 Configure integrations via System Status
  2. 2 Upload your first document
  3. 3 Review results in Files
Learn more about DocuElevate
{% endif %}{# end multi_user_enabled #}
{% endblock %}