Skip to content

Instantly share code, notes, and snippets.

@gustavcaves
Forked from hcosta/page_confirm_delete.html
Created March 15, 2021 18:25
Show Gist options
  • Save gustavcaves/1eb20235b4f4b9553c7a0e89b494c266 to your computer and use it in GitHub Desktop.
Save gustavcaves/1eb20235b4f4b9553c7a0e89b494c266 to your computer and use it in GitHub Desktop.
{% extends 'core/base.html' %}
{% load static %}
{% block title %}Borrar página{% endblock %}
{% block content %}
{% include 'pages/includes/pages_menu.html'%}
<main role="main">
<div class="container">
<div class="row mt-3">
<div class="col-md-9 mx-auto">
<div>
<form action="" method="post">{% csrf_token %}
<p>¿Estás seguro de que quieres borrar "{{ object }}"?</p>
<input type="submit" value="Sí, borrar la página" />
</form>
</div>
</div>
</div>
</div>
</main>
{% endblock %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment