Guest User

Untitled

a guest
Jul 18th, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. class PostDelete(generic.DeleteView):
  2. model = Post
  3. template_name = 'dashboard/post_delete.html'
  4. success_url = reverse_lazy('dashboard:posts')
  5.  
  6. {% extends 'dashboard/sidebar.html' %}
  7.  
  8. {% block title %}Confirmation{% endblock %}
  9.  
  10. {% block mainpage %}
  11. <div id="page-wrapper" align="center">
  12. <div id="page-inner">
  13. <h1>New post</h1>
  14. <form method="post">
  15. {% csrf_token %}
  16. Are you sure you want to delete?
  17. <br>
  18. <button class="btn btn-danger">Yes</button>
  19. <a href="{% url 'dashboard:posts' %}" class="btn btn-primary">No</a>
  20.  
  21. </form>
  22. </div>
  23. </div>
  24. {% endblock %}
Add Comment
Please, Sign In to add comment