{% extends "base.html" %} {% block title %}Compose{% endblock %} {% block content %}
{% csrf_token %}
Content {% if reply_to %} {% include "activities/_mini_post.html" with post=reply_to %} {% endif %} {{ form.reply_to }} {{ form.id }} {% include "forms/_field.html" with field=form.text %} {% include "forms/_field.html" with field=form.content_warning %} {% include "forms/_field.html" with field=form.visibility %}
Images {% if post %} {% for attachment in post.attachments.all %} {% include "activities/_image_uploaded.html" %} {% endfor %} {% endif %} {% if not post or post.attachments.count < 4 %} Add Image {% endif %}
{{ config.post_length }}
{% endblock %}