diff options
author | Andrew Godwin | 2022-11-16 06:53:39 -0700 |
---|---|---|
committer | Andrew Godwin | 2022-11-16 13:53:40 -0700 |
commit | 495e955378d62dc439c4c210785e5d401bc77f64 (patch) | |
tree | 859813b06314f387470295e752d1f1b3828830a7 /templates/activities/compose.html | |
parent | 906ed2f27c9105dbd78f416930f1aa2b49497567 (diff) | |
download | takahe-495e955378d62dc439c4c210785e5d401bc77f64.tar.gz takahe-495e955378d62dc439c4c210785e5d401bc77f64.tar.bz2 takahe-495e955378d62dc439c4c210785e5d401bc77f64.zip |
Tag and visibility handling
Diffstat (limited to 'templates/activities/compose.html')
-rw-r--r-- | templates/activities/compose.html | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/templates/activities/compose.html b/templates/activities/compose.html new file mode 100644 index 0000000..ad0457b --- /dev/null +++ b/templates/activities/compose.html @@ -0,0 +1,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>Post</button> + </div> + </form> +{% endblock %} |