{% extends "admin_base.html" %} {% block title %}Dashboard | Nexora Admin{% endblock %} {% block content %}

Overview

Dashboard

A complete overview of registrations, payments, game cards, media, and user messages.

{{ stats.registrations }}Total Registrations
{{ stats.unpaid }}Unpaid
{{ stats.games }}Game Cards
{{ stats.contacts }}Messages
{{ stats.sponsors }}Sponsors
{{ stats.media }}Media Files

Game Wise Entries

{% if by_game %}
{% for row in by_game %}
{{ row.title }}{{ row.total }}
{% endfor %}
{% else %}
No games have been added yet.
{% endif %}

Recent Registrations

{% if recent %}
{% for row in recent %} {% endfor %}
Name Game Entry Phone Status
{{ row.full_name }} {{ row.game_title }} {{ row.entry_type }} {{ row.phone }} {{ row.payment_status }}
View All Registrations
{% else %}
No registrations have arrived yet.
{% endif %}
{% endblock %}