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

Admin Dashboard

{% for account in accounts %} {% endfor %}
Username Created At Last Active Storage Used Storage Limit Status Actions
{{ account.username }} {{ account.created_at.strftime('%Y-%m-%d %H:%M:%S') }} {{ account.last_active.strftime('%Y-%m-%d %H:%M:%S') }} {{ (account.storage_used / 1024 / 1024) | round(2) }} MB {{ (account.storage_limit / 1024 / 1024 / 1024) | round(2) }} GB {{ 'Banned' if account.is_banned else 'Active' }}
{% endblock %} {% block scripts %} {% endblock %}