Add thread creation & deletion

This commit is contained in:
David Hoppenbrouwers
2022-10-07 15:20:17 +02:00
parent 6f3b4de047
commit b96db0b905
8 changed files with 129 additions and 17 deletions

View File

@@ -0,0 +1,11 @@
{% extends 'base.html' %}
{% block content %}
<p>Are you sure you want to delete "{{ thread_title }}"?</p>
<form method="post" action="../delete">
<input type="submit" value="Yes">
</form>
<form method="get" action="..">
<input type="submit" value="No">
</form>
{% endblock %}