{% extends 'base.html' %} {% block title %}Admin Dashboard | {{ settings.site_name }}{% endblock %} {% block content %}

Admin Dashboard

Welcome back, {{ current_user.name or current_user.username }}

Settings

Articles

{{ stats.total_articles or 0 }}

View all

Journals

{{ stats.total_journals or 0 }}

View all

Submissions

{{ stats.pending_submissions or 0 }}

View all

Messages

{{ stats.unread_messages or 0 }}

View all
Recent Submissions
View All
{% if recent_submissions %} {% else %}

No submissions yet

{% endif %}
Recent Messages
View All
{% if recent_messages %} {% else %}

No messages yet

{% endif %}
{% endblock %}