{% extends 'layouts/main.django' %} {% block content %}
{% if Post.Title %}

{{ Post.Title }}

{% else %}

Post #{{ Post.ID }}

{% endif %}
{% if Error %}
{{ Error }}
{% endif %}
Optional title for the post. If left empty, the post will be titled "Post #{{ Post.ID }}".
Optional description for the post. This can be used to provide more context or details about the content of the post. Learn more about syntax.
{% if 'Safe' in Post.Rating %} {% else %} {% endif %} {% if 'Sensitive' in Post.Rating %} {% else %} {% endif %} {% if 'Questionable' in Post.Rating %} {% else %} {% endif %} {% if 'Explicit' in Post.Rating %} {% else %} {% endif %}
{% if User.CanApprovePosts %}
{% if Post.IsApproved %} {% else %} {% endif %}
{% endif %} {% if User.CanDeletePosts %}
{% if Post.IsDeleted %} {% else %} {% endif %}
{% endif %} {% if User.IsAdmin %}
{% endif %}

✦ Tags ✦

General ({{ PostTags.general|length }})

{% for tag in PostTags.general %}
{{ tag.Name }} {% if tag.Parent %} {% endif %} {% if tag.Children %} {% endif %}
{% empty %}
No general tags
{% endfor %}

Artist ({{ PostTags.artist|length }})

{% for tag in PostTags.artist %}
{{ tag.Name }} {% if tag.Parent %} {% endif %} {% if tag.Children %} {% endif %}
{% empty %}
No artist tags
{% endfor %}

Character ({{ PostTags.character|length }})

{% for tag in PostTags.character %}
{{ tag.Name }} {% if tag.Parent %} {% endif %} {% if tag.Children %} {% endif %}
{% empty %}
No character tags
{% endfor %}

Copyright ({{ PostTags.copyright|length }})

Meta ({{ PostTags.meta|length }})

{% for tag in PostTags.meta %}
{{ tag.Name }} {% if tag.Parent %} {% endif %} {% if tag.Children %} {% endif %}
{% empty %}
No meta tags
{% endfor %}
{{ Post.Title }}
ID: {{ Post.ID }}
Uploader: {{ Post.Uploader.Username }}
Approver: {% if Post.Approver.ID %} {{ Post.Approver.Username }} {% else %} {% if Post.IsApproved %} N/A {% else %} Not Approved {% endif %} {% endif %}
Filename: {{ Post.FileName }}
Type: {{ Post.ContentType }}
MD5: {{ Post.MD5Hash }}
ViewCount: {{ Post.ViewCount }}
Favourites: {{ Post.FavouriteCount }}
Comments: {{ Post.CommentCount }}
{% endblock %} {% block scripts %} {% endblock %}