{% load static %} {% load activity_tags %}
{% include "identity/_identity_banner.html" with identity=post.author %}
{% if post.summary %}
{{ post.summary }}
{% endif %}
{{ post.safe_content_local }} {% if post.attachments.exists %}
{% for attachment in post.attachments.all %} {% if attachment.is_image %} {{ attachment.name|default:'(no description)' }} {% if attachment.name %}
ALT
{% endif %}
{% elif attachment.is_video %} {% endif %} {% endfor %} {% for attachment in post.attachments.all %} {% if not attachment.is_image and not attachment.is_video %}
{{ attachment.file_display_name }}
{% endif %} {% endfor %}
{% endif %}
{% if post.edited %}
Edited {{ post.edited | timedeltashort }} ago
{% endif %}
View Post & Replies {% if not post.local and post.url %} See Original {% endif %} {% if request.user.admin %} View In Admin {% endif %}