I see that I had mixed the second and third ways of using 'redirect' in the doc. It seems to be working OK this way:
def upload1(request):
. . .
fout = 'tempfile.csv'
return redirect('/isf/upload2/' + fout + '/')
def upload2(request, filename=None):
. . .
with the following in urls.py:
(r'^app/upload2/(?P<filename>[A-Za-z0-9._-]+)/$', upload2),
Thanks.
I've been working on this while watching a live NASA feed of Curiosity's landing on Mars. Exciting!
--
You received this message because you are subscribed to the Google Groups "Django users" group.