mirror of
https://github.com/jointakahe/takahe.git
synced 2024-11-22 23:30:59 +00:00
19 lines
484 B
HTML
19 lines
484 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}Compose{% endblock %}
|
|
|
|
{% block content %}
|
|
<nav>
|
|
<a href="." class="selected">Compose</a>
|
|
</nav>
|
|
|
|
<form action="." method="POST">
|
|
{% csrf_token %}
|
|
{% for field in form %}
|
|
{% include "forms/_field.html" %}
|
|
{% endfor %}
|
|
<div class="buttons">
|
|
<button>{% if config_identity.toot_mode %}Toot!{% else %}Post{% endif %}</button>
|
|
</div>
|
|
</form>
|
|
{% endblock %}
|