Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am switching to the class-based views. I also use JavaScript to confirm any deletion on the client side. Django DeleteView requires a delete confirmation template which I don't care about.

Is there any simple way of disabling the confirmation on any kind of deletes in Django?

class EntryDeleteView(DeleteView):
    model = Entry
    success_url = reverse_lazy('entry_list')   # go back to the list on successful del
    template_name = 'profiles/entry_list.html' # go back to the list on successful del

    @method_decorator(login_required)
    def dispatch(self, *args, **kwargs):
        return super(EntryDeleteView, self).dispatch(*args, **kwargs)
share|improve this question
adding this to the delete view allows deleting via get, but I will go with a post solution instead. [def get(self, *args, **kwargs): return self.delete(*args, **kwargs)] – Val Neekman Mar 3 '12 at 2:20

2 Answers

up vote 6 down vote accepted

You should make a POST query from clientside (with AJAX or POSTing a form). That's because if you'll allow to delete something by GET, your service will be vulnerable to CSRF. Someone will send your admin a in email or somehow else, and you'll be in trouble.

share|improve this answer
I have login required on all deletions, wouldn't that be sufficient? – Val Neekman Mar 3 '12 at 1:58
1  
No. Look: i'm evil hacker and I know the email of your site's Admin. I send him a link to some page with cute kitten images, and append something like <img src="your_site/admin/profile/delete/"; width=1 height=1> to that page. Admin looks on kitten and gets his whole profile deleted. Browsers do not allow to POST on other sites, and Django has some CSRF protection, so this will not work with POST, that's why delete requires a POST. – ilvar Mar 4 '12 at 2:01
1  
What ilvar forgot to mention is that the admin is likely to have an active, logged-in session to his own site, thus bypassing the login step. – stalemate Apr 26 '12 at 14:02

The DeleteView renders the confirmation page on GET and deletes the object if you use a POST or DELETE. If your JS does a POST to the url after confirmation it should work like you want.

share|improve this answer
yep, I can get js just send the post after the confirmation. – Val Neekman Mar 3 '12 at 1:58

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.