{% extends "admin/base.html" %} {% block title %}Post Management - Admin{% endblock %} {% block admin_content %}
| Title | Author | Status | Difficulty | Created | Actions |
|---|---|---|---|---|---|
|
{{ post.title }}
{% if post.subtitle %}
{{ post.subtitle[:80] }}{% if post.subtitle|length > 80 %}...{% endif %} {% endif %} {% if post.gpx_files.count() > 0 %} {% endif %} |
{{ post.author.nickname }} | {% if post.published %} Published {% else %} Pending {% endif %} | {{ post.get_difficulty_label() }} |
{{ post.created_at.strftime('%Y-%m-%d %H:%M')|safe }} |
{% if status == 'pending' %} There are no posts waiting for review. {% elif status == 'published' %} No posts have been published yet. {% else %} No posts have been created yet. {% endif %}