{% extends "base.html" %} {% block title %}Admin Panel - Das File Storage{% endblock %} {% block content %}
{% if message %}| Username | Role | Files | Created | Status | Actions |
|---|---|---|---|---|---|
| {{ user.username }} | {% if user.is_admin %} Admin {% else %} User {% endif %} | {{ user.file_count }} files | {{ user.created_at.strftime('%Y-%m-%d') }} | {% if user.is_blocked %} 🚫 Blocked {% else %} ✅ Active {% endif %} | {% if user.username != username %} {% if user.is_blocked %} {% else %} {% endif %} {% else %} Current User {% endif %} |