{% extends "base.html" %} {% block title %}Admin Dashboard - {{ super() }}{% endblock %} {% block content %}

Admin Dashboard

Total Articles

{{ total_articles }}

Published

{{ published_articles }}

Maintenance

{{ settings.days_threshold }} days

{{ settings.max_articles }} max articles
Last Run

{% if settings.last_run %} {{ settings.last_run.strftime('%m/%d') }} {% else %} Never {% endif %}

{{ 'Enabled' if settings.is_enabled else 'Disabled' }}
Recent Articles
View All
{% if recent_articles %}
{% for article in recent_articles %} {% endfor %}
Title Status Published Views Created Actions
{{ article.title[:50] }}{% if article.title|length > 50 %}...{% endif %} {% if article.is_published %} Published {% else %} Draft {% endif %} {{ article.date_published.strftime('%m/%d/%Y') if article.date_published else 'N/A' }} {{ article.view_count }} {{ article.created_at.strftime('%m/%d/%Y %H:%M') if article.created_at else 'N/A' }}
{% else %}

No articles yet. Create your first article.

{% endif %}
{% endblock %} {% block extra_scripts %} {% endblock %}