{% set title = __("Delete topic") %} {% extends "base.twig" %} {% block content %} <table border="1" bordercolor="silver" cellspacing="0" cellpadding="4" width="100%"> <tr> <td bgcolor="pink"> <h3 class="m-0"><font color="red">{{ __("Do you want to delete this topic?") }}</font></h3> </td> </tr> <tr> <td> {{ __("Are you sure you want to delete the topic <em>%topic%</em> including <strong>all posts and attachments</strong>?", { "topic": ctx.topic.title|e("html"), }) }} </td> </tr> <tr> <td class="text-right"> <form action="?_action=deletetopic" method="post" class="inline"> <input type="hidden" name="topic" value="{{ ctx.topic.id }}"> <input type="hidden" name="confirm" value="{{ ("confirm" ~ ctx.topic.id)|hash("sha256", true)|base64_encode }}"> <button><font color="red"><b>{{ __("Delete topic & posts") }}</b></font></button> </form> <form action="." method="get" class="inline"> <input type="hidden" name="_action" value="viewtopic"> <input type="hidden" name="topic" value="{{ ctx.topic.id }}"> <button>{{ __("Keep topic") }}</button> </form> </td> </tr> </table> {% endblock %}