blob: 9d02988387ec809a3082ec6f514e40d303fd49bf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
{% extends "base.html" %}
{% block title %}Compose{% endblock %}
{% block content %}
<form action="." method="POST">
{% csrf_token %}
<fieldset>
<legend>Content</legend>
{% if reply_to %}
<p>Replying to <a href="{{ reply_to.urls.view }}">{{ reply_to }}</a></p>
{% 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 %}
|