mirror of
https://github.com/jointakahe/takahe.git
synced 2024-11-13 02:41:08 +00:00
41 lines
1.5 KiB
HTML
41 lines
1.5 KiB
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}Compose{% endblock %}
|
|
|
|
{% block content %}
|
|
<form action="." method="POST">
|
|
{% csrf_token %}
|
|
<fieldset>
|
|
<legend>Content</legend>
|
|
{% if reply_to %}
|
|
<label>Replying to</label>
|
|
{% 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 %}
|
|
</fieldset>
|
|
<fieldset>
|
|
<legend>Images</legend>
|
|
{% if post %}
|
|
{% for attachment in post.attachments.all %}
|
|
{% include "activities/_image_uploaded.html" %}
|
|
{% endfor %}
|
|
{% endif %}
|
|
{% if not post or post.attachments.count < 4 %}
|
|
<a class="button add-image"
|
|
hx-get='{% url "compose_image_upload" %}'
|
|
hx-target="this"
|
|
hx-swap="outerHTML">
|
|
Add Image
|
|
</a>
|
|
{% endif %}
|
|
</fieldset>
|
|
<div class="buttons">
|
|
<span id="character-counter">{{ config.post_length }}</span>
|
|
<button id="post-button">{% if post %}Save Edits{% elif config_identity.toot_mode %}Toot!{% else %}Post{% endif %}</button>
|
|
</div>
|
|
</form>
|
|
{% endblock %}
|