{% extends "admin/base.html" %} {% block title %}Admin Dashboard - Moto Adventure{% endblock %} {% block admin_content %}

Dashboard

Total Users
{{ total_users }}
Published Posts
{{ published_posts }}
Pending Posts
Active Users (30d)
{{ active_users }}
Views Today
{{ views_today }}
Yesterday: {{ views_yesterday }}
Views This Week
{{ views_this_week }}
Total Engagement
Comments: {{ total_comments }}
Likes: {{ total_likes }}
Password Reset Requests
Pending requests need attention
Active Reset Tokens
{{ active_reset_tokens or 0 }}
Unused tokens (24h expiry)
Chat Management
{{ total_chat_rooms or 0 }}
Total Chat Rooms
Active Rooms: {{ active_chat_rooms or 0 }}
Linked to Posts: {{ linked_chat_rooms or 0 }}
Recent Messages: {{ recent_chat_messages or 0 }}
Recent Posts
View All
{% if recent_posts %} {% for post in recent_posts %}
{{ post.title[:50] }}{% if post.title|length > 50 %}...{% endif %}
by {{ post.author.nickname }} • {{ post.created_at.strftime('%Y-%m-%d %H:%M') }}
{% if post.published %} Published {% else %} Pending {% endif %}
{% endfor %} {% else %}

No recent posts

{% endif %}
Most Viewed Posts
{% if most_viewed_posts %} {% for post_id, title, view_count in most_viewed_posts %} {% endfor %} {% else %}

No view data available

{% endif %}
Most Viewed Pages
{% if most_viewed_pages %} {% for path, view_count in most_viewed_pages %}
{{ path }} {{ view_count }}
{% endfor %} {% else %}

No page view data available

{% endif %}
Recent Users
View All
{% if recent_users %} {% for user in recent_users %}
{{ user.nickname }}
{{ user.email }} • {{ user.created_at.strftime('%Y-%m-%d') }}
{% if user.is_admin %} Admin {% else %} User {% endif %}
{% endfor %} {% else %}

No recent users

{% endif %}
{% endblock %}