You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
369 B
HTML
18 lines
369 B
HTML
{% extends 'base.html' %}
|
|
|
|
|
|
{% block title %}Delete Comment{% endblock %}
|
|
|
|
{% block header %}<h1>Delete comment by {{ object.author }}</h1>{% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
<form class="model-form" method="post">
|
|
{% csrf_token %}
|
|
<p>Are you sure you want to delete "{{ object }}"?</p>
|
|
{{ form }}
|
|
<input type="submit" value="Confirm">
|
|
</form>
|
|
|
|
{% endblock %}
|