Add theme

This commit is contained in:
David Hoppenbrouwers
2022-10-07 19:13:16 +02:00
parent a6695b3e39
commit 09cb2df004
11 changed files with 164 additions and 32 deletions

View File

@@ -2,10 +2,12 @@
{% 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>
<p>
<form method="post" action="../delete" style=inline>
<input type="submit" value="Yes">
</form>
<form method="get" action=".." style=inline>
<input type="submit" value="No">
</form>
</p>
{% endblock %}