{% extends "portal_base.html" %} {% block title %}Post · Portal{% endblock %} {% block topbar_title %}Social post{% endblock %} {% block portal_content %}
{{ post.get_status_display }} ← All posts

Caption

{% if post.media %}
{% for item in post.media %} {% if item.type == "video" %} {% else %} {{ item.filename|default:'Image' }} {% endif %} {% endfor %}
{% endif %}
{{ post.body }}
{% if post.scheduled_for %}

Scheduled {{ post.scheduled_for|date:"M j, Y g:i A" }}

{% endif %} {% if post.ollama_prompt %}

AI prompt: {{ post.ollama_prompt }}

{% endif %}

Targets

{% for target in post.targets.all %} {% empty %} {% endfor %}
AccountPlatformStatus
{{ target.account.label }} {{ target.get_platform_display }} {{ target.get_status_display }}
No targets attached.
{% endblock %}