{% extends "base.html" %} {% block title %}Admin Panel - SKE Digital Signage{% endblock %} {% block extra_css %} {% endblock %} {% block content %}

Admin Panel {% if current_user.is_super_admin %} Super Admin {% elif current_user.is_admin %} Admin {% endif %}

System administration and user management

Total Users

{{ users|length }}

Active Users

{{ users|selectattr('is_active_user')|list|length }}

Admin Users

{{ users|selectattr('role', 'equalto', 'admin')|list|length }}

Regular Users

{{ users|selectattr('role', 'equalto', 'user')|list|length }}

User Management
{% if users %}
{% for user in users %} {% if user.username != current_user.username and user.role != 'sadmin' %} {% endif %} {% endfor %}
Username Role Status Created Last Login Actions
{{ user.username }} {% if user.username == current_user.username %} You {% endif %} {% if user.role == 'sadmin' %} Super Admin {% elif user.role == 'admin' %} Admin {% else %} User {% endif %} {% if user.is_active_user %} Active {% else %} Inactive {% endif %} {{ user.created_at.strftime('%Y-%m-%d') if user.created_at else 'N/A' }} {{ user.last_login.strftime('%Y-%m-%d %H:%M') if user.last_login else 'Never' }} {% if user.username != current_user.username and user.role != 'sadmin' %} Click to edit {% elif user.role == 'sadmin' %} Protected {% else %} Current User {% endif %}
{% else %}
No Users Found

Create your first user to get started.

{% endif %}
System Assets
Logo Asset
{% if logo_exists %} Available
Logo
{% else %} Missing

Upload logo.png to static/assets/

{% endif %}
Login Picture
{% if login_picture_exists %} Available
Login Picture
{% else %} Missing

Upload login_picture.png to static/assets/

{% endif %}
File Management
Clean Unused Files

Remove media files from uploads folder that are not referenced by any players. This helps free up storage space by removing orphaned files.

Clear Server Logs

Remove all server log entries from the database to free up space.

Database Maintenance

Optimize database performance and clean up orphaned records.

Maintenance Status
Ready to perform maintenance tasks.
Asset Upload
Scheduled Tasks
Quick Setup
Daily File Cleanup

Automatically clean unused files daily at 1:00 AM


Custom Schedule
{% endblock %}