contentdb/app/templates/threads/delete_reply.html

23 lines
713 B
HTML
Raw Normal View History

{% extends "base.html" %}
{% block title %}
2022-01-08 18:57:05 +01:00
{{ _("Delete reply by %(username)s in %(title)s ", title=thread.title, username=reply.author.username) }}
{% endblock %}
{% block content %}
<form method="POST" action="" class="card box_grey">
<input type="hidden" name="csrf_token" value="{{ csrf_token() }}" />
2022-01-08 00:27:00 +01:00
<h3 class="card-header">{{ self.title() }}</h3>
2021-02-23 01:01:28 +01:00
<div class="card-body markdown">
{{ reply.comment | markdown }}
</div>
<div class="card-body">
2022-01-08 00:27:00 +01:00
<p>{{ _("Deleting is permanent") }}</p>
2022-01-27 21:00:33 +01:00
<a class="btn btn-secondary me-3" href="{{ thread.getViewURL() }}">{{ _("Cancel") }}</a>
2022-01-08 00:27:00 +01:00
<input type="submit" value="{{ _('Delete') }}" class="btn btn-danger" />
</div>
</form>
{% endblock %}