{% extends "base.html" %} {% block title %}Admin Dashboard - DosVault{% endblock %} {% block content %}

Admin Dashboard

System overview and management

🎮

{{ total_games }}

Total Games

👥

{{ total_users }}

Total Users

⚙️

Manage Users

Create & Edit

📚

Browse Games

View Library

System Management

ROM Scanner

Scan directories for new ROM files and add them to the database

Metadata Refresh

Update game metadata and refresh image information from IGDB

Image Sync

Download missing cover art and screenshots locally

Database Cleanup

Remove orphaned records and cleanup missing files

System Stats

View detailed statistics and system health

Configuration

Edit system configuration settings

Cache Control

Clear application caches and temporary files

System Logs

View application logs and system events

Log Management

Download and manage log files

Live Log Stream

Monitor real-time application logs

Recent Games

{% if recent_games %}
{% for game in recent_games %}

{{ game.metadata_obj.title or game.title }}

{{ game.path.name }}

{% endfor %}
{% else %}

No games found

{% endif %}

Recent Users

{% if recent_users %}
{% for user in recent_users %}

{{ user.username }}

{{ user.email }}

{{ user.role.upper() }} {% if not user.is_active %} INACTIVE {% endif %}
{% endfor %}
{% else %}

No users found

{% endif %}
{% endblock %}