Bobby Roberts wrote:
> i have a situation here.  I'm trying to NOT use .html extensions in
> this project.  In other words i'd really like to just have my urls be
> directories.  The project consists of a series of forms and i'd like
> them to proceed as follows:
> mysite.com/step1/
> mysite.com/step2/
> mysite.com/step3/
> [...]
> from django.conf.urls.defaults import *
>
> urlpatterns = patterns('billpay.views',
>     # (r'^modules/', include('modules.foo.urls')),
>     (r'step1/$', 'DoPayDetailForm'),
>     (r'step2/$', 'DoPayInfoForm'),
> )
>
> urlpatterns += patterns('django.views.generic.simple',
>     (r'step1/$', 'direct_to_template', {'template': 'step1.html'}),
>     (r'step2/$', 'direct_to_template', {'template': 'step2.html'}),
> )
> when form1 is_valid, the view saves form1 to session variables then
> redirects to step2 as follows:
>
> return render_to_response("step2.html",'form': form},
> context_instance=RequestContext(request))
>
> The main issue i'm having is that i need this to redirect to
> mysite.com/step2/ but it's staying at mysite.com/step1/ which results
> in the view for step2 not being executed.
> ideas?

I am not sure whether you can do what you want like that.  When you
render HTML from within a view, it will be displayed on the same URL
on which that view exists.  You could, instead of rendering the HTML
for step2 in the view for step1, redirect to another view written
specifically to deal with step2 functions.  For example:

def step1_view(request):
   if request.method == 'POST':
       form = Form(request.POST)
       if form.is_valid():
         # save data, etc
         return HttpResponseRedirect('/step2/')

Something like that.  Also, the form wizard in the development version
of Django is looking like a very handy feature:

http://www.djangoproject.com/documentation/form_wizard/

--
Ayaz Ahmed Khan

--~--~---------~--~----~------------~-------~--~----~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to