{% extends 'base.html' %} {% block title %} UCHAN Delete {% endblock %} {% block body %} {% if w_arg == 'board' %}

Delete board

{% elif w_arg == 'thread' %}

Delete thread

{% elif w_arg == 'post' %}

Delete post

{% endif %}
Home {% if w_arg == 'thread' %} | Return to board {% elif w_arg == 'post' %} | Return to thread {% endif %}

{% if success %}

Removed successfully

{% else %}
{% if w_arg == 'board' %}

WARNING!
Removing the board will cause the removal of all threads and posts!
This action cannot be undone!

{% elif w_arg == 'thread' %}

WARNING!
Removing the thread will cause the removal of all posts!
This action cannot be undone!

{% elif w_arg == 'post' %}

WARNING!
This action cannot be undone!

{% endif %}
{% if (w_arg == 'post') and (post.check_for_edit(edit_token)) %} {% else %} {% endif %}
{% endif %}
{% endblock %}