aboutsummaryrefslogtreecommitdiff
path: root/app/templates/threads/delete_reply.html
blob: 6c145dfcf021eeac04c2822e33f4dcdab51b0719 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{% 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() }}" />

		<h3 class="card-header">Delete reply by {{ reply.author.display_name }}</h3>
		<div class="card-body">
			{{ 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 %}