{{ post.content|replace('\n', '
')|safe }}
{% extends "admin/base.html" %} {% block title %}{{ post.title }} - Post Review{% endblock %} {% block admin_content %}
{{ image.description }}
{% endif %}| Author: | {{ post.author.nickname }} |
| Created: | {{ post.created_at.strftime('%Y-%m-%d %H:%M:%S') }} |
| Updated: | {{ post.updated_at.strftime('%Y-%m-%d %H:%M:%S') }} |
| Difficulty: | {{ post.get_difficulty_label() }} ({{ post.difficulty }}/5) |
| Status: | {% if post.published %} Published {% else %} Pending {% endif %} |
| Media Folder: |
{% if post.media_folder %}
{{ post.media_folder }}
{% else %}
None
{% endif %}
|
| Comments: | {{ post.comments.count() }} |
| Likes: | {{ post.get_like_count() }} |
| Images: | {{ post.images.count() }} |
| GPX Files: | {{ post.gpx_files.count() }} |
| Views: | {{ post.page_views|length if post.page_views else 0 }} |