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

Manage Articles

Create New Article
{% if articles.items %}
{% for article in articles.items %} {% endfor %}
Title Status Author Published Views Likes Comments Created Actions
{{ article.title[:60] }}{% if article.title|length > 60 %}...{% endif %}
/article/{{ article.slug }}
{% if article.is_published %} Published {% else %} Draft {% endif %} {{ article.author_name or 'N/A' }} {{ article.date_published.strftime('%m/%d/%Y') if article.date_published else 'N/A' }} {{ article.view_count }} {{ article.likes.count() }} {{ article.comments.count() }} {{ article.created_at.strftime('%m/%d/%Y %H:%M') if article.created_at else 'N/A' }}
{% if articles.pages > 1 %} {% endif %} {% else %}

No articles yet

Get started by creating your first article.

Create Article
{% endif %}
{% endblock %}