summaryrefslogtreecommitdiffstats
path: root/templates/activities/compose.html
blob: dfa6d1e5e5b95df64b77f77c37c9a3a7cfc0ad1a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{% 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 %}