Created
March 19, 2018 17:14
-
-
Save hcosta/586f1354e662a25d43a1b2e66403eda9 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{% 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
Este es un template de mi curso de Django 2.