Id: {{ post.id }}
Author: {{ post.author.username or "Deleted Account" }}
{% if post.is_approved %}
Approved by: {{ post.approver.username }}
{% else %}
Status: {{ post.status.name.capitalize() }}
{% endif %}
Rating: {{ post.rating.name.capitalize() }}
Posted: {{ post.natural_created() }}
{#{% if post.created != post.updated %}
Last edited: {{ post.updated.date() }}
{% endif %}#}
File size: {{ post.filesize_human }}
Image res: {{ post.image_resolution }}
{% if post.parent %}
{% endif %}
{% if post.children %}
Children:
{% for child in post.children %}
#{{child.id}}
{% endfor%}
{% endif %}
{% if not post.filetype.is_jpeg %}
{% endif %}
{{ super() }}
{% if post.can_edit %}
Comments
No comments so far.
{% endif %}Reply
To comment, please log in.
{% endif %}