You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

23 lines
876 B

{extends 'layout_view.tpl'}
{block name="title"}
{title}{$title|escape}{/title}
{/block}
{block name="content"}
{if $status neq 'DONE'}
<form method="post" action="{service controller=comment action=remove}">
<div class="card bg-warning text-white">
<div class="card-header">
{tr}Are you sure you want to delete this comment?{/tr}
</div>
<div class="card-body">
<input type="hidden" name="threadId" value="{$threadId|escape}"/>
<input type="hidden" name="confirm" value="1"/>
<input type="submit" class="btn btn-danger btn-sm" value="{tr}Delete{/tr}"/>
{object_link type=$objectType id=$objectId title="{tr}Cancel{/tr}"}
</div>
</div>
</form>
{/if}
{/block}