On Thu, 2009-02-26 at 21:15 -0800, Bobby Roberts wrote:
> Is it possible to execute a view from within a view?
> 
> I've got a situation in my current view where if a condition is met, I
> need to branch control to a new view and send it new parameters.  I
> have the following but it doesn't work:
> 
> Showdetails(request,slug=currentslug,selfbidder=1)

Since a view is just a function, yes it will work. However, a view
function will always return an HttpResponse object, so you probably want
something like

        return Showdetails(request,slug=currentslug,selfbidder=1)
        
so that the returned information is used.

> 
> I have read the docs and can't find any examples of how to call a view
> from a view.  Can someone point me to the right docs or show me what
> i'm doing wrong?

One popular use-case for this style of operation is wrapping generic
views to prepare extra information beforehand. An example is here:
http://www.pointy-stick.com/blog/2006/06/29/django-tips-extending-generic-views/

Regards,
Malcolm



--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to