20 lines
		
	
	
		
			484 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			20 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 %}
 |