mirror of
https://github.com/minetest/contentdb.git
synced 2024-11-10 17:43:46 +01:00
dea5a52c86
Fixes #269
23 lines
634 B
HTML
23 lines
634 B
HTML
{% 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.username }}</h3>
|
|
<div class="card-body markdown">
|
|
{{ 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 %}
|