—
Total Users
—
Total Extractions
—
Files Processed
—
Paid Users
—
Free
—
Pro
—
Enterprise
Recent Signups
| Name | Plan | Extractions | Joined | |
|---|---|---|---|---|
| Loading… | ||||
Recent File Activity
| Filename | Type | Words | Language | Date |
|---|---|---|---|---|
| Loading… | ||||
All Users
| Name | Plan | Extractions | Created | Actions | |
|---|---|---|---|---|---|
| Loading… | |||||
File History (All Users)
| Filename | Type | Words | Language | User | Date |
|---|---|---|---|---|---|
| Loading… | |||||
🔑 Promote User to Admin
Enter the email address of the user you want to grant admin privileges. This action cannot be undone from the UI.
🛠 First-Time Setup
To make yourself an admin via Python shell:
from app import app
from models import db, User
with app.app_context():
u = User.query.filter_by(email='you@example.com').first()
u.is_admin = True
db.session.commit()
print('Done!')