20 lines
424 B
HTML
20 lines
424 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>Post</button>
|
|
</div>
|
|
</form>
|
|
{% endblock %}
|