{% extends "base.html" %} {% block title %}Admin Dashboard - {{ super() }}{% endblock %} {% block content %}
| 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' }} |
No articles yet. Create your first article.
{% endif %}