mirror of
https://github.com/TandoorRecipes/recipes.git
synced 2026-01-01 12:18:45 -05:00
24 lines
685 B
HTML
24 lines
685 B
HTML
{% extends "base.html" %}
|
|
{% load crispy_forms_tags %}
|
|
{% load i18n %}
|
|
|
|
{% block title %}{% trans 'Delete' %} - {{ title }}{% endblock %}
|
|
|
|
{% block extra_head %}
|
|
{{ form.media }}
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
<h3>{% trans 'Delete' %} {{ title }}</h3>
|
|
|
|
<form action="." method="post">
|
|
{% csrf_token %}
|
|
<div class="alert alert-danger" role="alert">
|
|
{% blocktrans %}Are you sure you want to delete the {{ title }}: <b>{{ object }}</b> {% endblocktrans %}
|
|
</div>
|
|
{{ form|crispy }}
|
|
<button class="btn btn-success" type="submit"><i class="fas fa-trash-alt"></i> {% trans 'Confirm' %}</button>
|
|
</form>
|
|
|
|
{% endblock %} |