{% extends "admin/base.html" %} {% block title %}Post Management - Admin{% endblock %} {% block admin_content %}

Posts

{% if posts.items %}
{% if status == 'pending' %} Posts Pending Review ({{ posts.total }}) {% elif status == 'published' %} Published Posts ({{ posts.total }}) {% else %} All Posts ({{ posts.total }}) {% endif %}
{% for post in posts.items %} {% endfor %}
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 not post.published %}
{% else %}
{% endif %}
{% if posts.pages > 1 %} {% endif %} {% else %}
No posts found

{% 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 %}

{% endif %} {% endblock %}