2020-07-11 04:29:33 +02:00
|
|
|
{% extends "base.html" %}
|
|
|
|
|
|
|
|
{% block title %}
|
|
|
|
Delete reply in {{ thread.title }}
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
<form method="POST" action="" class="card box_grey">
|
|
|
|
<input type="hidden" name="csrf_token" value="{{ csrf_token() }}" />
|
|
|
|
|
2021-02-26 00:25:33 +01:00
|
|
|
<h3 class="card-header">Delete reply by {{ reply.author.username }}</h3>
|
2021-02-23 01:01:28 +01:00
|
|
|
<div class="card-body markdown">
|
2020-07-11 04:29:33 +02:00
|
|
|
{{ reply.comment | markdown }}
|
|
|
|
</div>
|
|
|
|
<div class="card-body">
|
|
|
|
<p>Deleting is permanent</p>
|
|
|
|
|
|
|
|
<a class="btn btn-secondary mr-3" href="{{ thread.getViewURL() }}">Cancel</a>
|
|
|
|
<input type="submit" value="Delete" class="btn btn-danger" />
|
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
{% endblock %}
|