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.

Let's say I have two models, Book and Page:

class Book(models.Model):
    pass

class Page(models.Model):
    book = models.ForeignKey(Book)

I need to delete a page and being redirected to the specific book that the page belonged to. To achieve this, I make a class based view to delete the page:

class PageDeleteView(DeleteView):
    model = Page

    def get_success_url(self, **kwargs):
        return reverse_lazy('book_detail', self.book.pk)

The problem is that, since the object is deleted before get_success_url is called, this method fails, and I get a 404 error.

How could I do it?

Update:

Following the idea of @DrTyrsa, I have achieved it overriding the delete method, so the class would be as follows:

reverse_lazy = lambda name=None, *args : lazy(reverse, str)(name, args=args)

class PageDeleteView(DeleteView):
    model = Page

    def get_success_url(self, **kwargs):
        return reverse_lazy('book_detail', self.book.pk)

    def delete(self, request, *args, **kwargs):
        self.book_pk = self.get_object().book.pk
        return super(PageDeleteView, self).delete(request, *args, **kwargs)
share|improve this question
Why does PageDeleteView have model = Book ? Shouldn't it be model = Page ? – jpic May 17 '12 at 7:36
You're right, jpic. I meant 'Page', so I have fixed it. – jantoniomartin May 17 '12 at 7:39
You don't need lazy reversing here, if you call reverse from a method this call is already "lazy" enough not to cause any problem. – DrTyrsa May 18 '12 at 8:26

1 Answer

up vote 3 down vote accepted

Save object's pk before deleting. In __init__, for example. And name your URL patterns.

share|improve this answer
Maybe it's possible to use kwargs['pk'] ? (or maybe kwargs[self.pk_url_kwarg]) – jpic May 17 '12 at 7:38
DrTyrsa, my urls are named (not in the example), but in the url pattern I have the Page pk, but not the Book pk (should I?). It's the Book pk what I need in init so maybe I should include it in the url pattern, but I don't like this solution. – jantoniomartin May 17 '12 at 7:42
@jantoniomartin I don't like it either, that's why I don't use class-based views. :-) – DrTyrsa May 17 '12 at 7:49
2  
@jpic self.kwargs will have object's id, but not the related object's. – DrTyrsa May 17 '12 at 7:49
@DrTyrsa, I'm just beginning with them, and I find them quite convenient, but I still have to learn much. – jantoniomartin May 17 '12 at 7:55
show 1 more comment

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.