14 lines
466 B
HTML
14 lines
466 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}Delete #{{ quote.id }}{% endblock %}
|
|
|
|
{% block content %}
|
|
<h2 class="text-bfobOrange font-bnto text-2xl">Delete Quote #{{ quote.id }}?</h2>
|
|
|
|
<pre>{{ quote.quote }}</pre>
|
|
|
|
<form action="" method="POST">
|
|
{% csrf_token %}
|
|
<button class="border border-bfobOrange text-bfobOrange p-2 hover:border-transparent hover:bg-bfobOrange hover:text-bfobGray-dark" type="submit">Delete it forever</button>
|
|
</form>
|
|
{% endblock %}
|