diff options
author | ubq323 <ubq323> | 2021-06-06 16:58:23 +0000 |
---|---|---|
committer | ubq323 <ubq323> | 2021-06-06 16:58:23 +0000 |
commit | 5fd96e6fc69a1ab488630cf4e693efcb7683c4b8 (patch) | |
tree | f2e3f3023478b491456d73cedddda64f3ff0314f /apioforum/templates | |
parent | e2b8fc0582776a366def582d73b686c8968b44c3 (diff) |
edit post slightly
Diffstat (limited to 'apioforum/templates')
-rw-r--r-- | apioforum/templates/edit_post.html | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/apioforum/templates/edit_post.html b/apioforum/templates/edit_post.html new file mode 100644 index 0000000..00673b8 --- /dev/null +++ b/apioforum/templates/edit_post.html @@ -0,0 +1,13 @@ +{% from 'common.html' import disp_post %} +{% extends 'base.html' %} +{% block header %} +<h1>{%block title%}editing post{%endblock%}</h1> +{% endblock %} + +{% block content %} +<form method="post"> +<textarea name="newcontent"> + the +</textarea> +<input type="submit" value="go"> +</form> |