takahe/templates/activities/compose.html

19 lines
608 B
HTML
Raw Normal View History

2022-11-16 05:53:39 -08:00
{% extends "base.html" %}
{% block title %}Compose{% endblock %}
{% block content %}
<form action="." method="POST">
{% csrf_token %}
2022-11-17 16:43:00 -08:00
<fieldset>
<legend>Content</legend>
{% 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>
2022-11-16 05:53:39 -08:00
<div class="buttons">
<button>{% if config_identity.toot_mode %}Toot!{% else %}Post{% endif %}</button>
2022-11-16 05:53:39 -08:00
</div>
</form>
{% endblock %}