{% extends "base.html" %} {% block title %}Manage Articles - {{ super() }}{% endblock %} {% block content %}
| 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' }} |