delete.html 381 B

12345678910111213
  1. {% extends "base.html" %}
  2. {% block content %}
  3. <h2>Удалить заметку {{ note.id }}?</h2>
  4. <hr>
  5. <h3>{{ note.title }}</h3>
  6. <p>{{ note.text }}</p>
  7. <form class="form-horizontal" method="post">
  8. {% csrf_token %}
  9. <div class="form-actions">
  10. <button type="submit" class="btn btn-primary" >Удалить</button>
  11. </div>
  12. </form>
  13. {% endblock content %}