mirror of
https://github.com/jointakahe/takahe.git
synced 2024-11-06 23:49:33 +00:00
23 lines
815 B
HTML
23 lines
815 B
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 }}
|
|
{% 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>
|
|
<div class="buttons">
|
|
<button>{% if config_identity.toot_mode %}Toot!{% else %}Post{% endif %}</button>
|
|
</div>
|
|
</form>
|
|
{% endblock %}
|