If I try action="/some/other/url"
where in url.py (r'^some/other/url/$', 'views.dofunction',
info_dict_item),
and
dofunction(request, app_label, mod_name):
if request.POST:
.....
request.POST is not true, is this something to do with the URL
navigation stage, is it by design?
Any ideas for a work around that doesn't involve posting everything to
one single very complex function?
Thanks in advance
Charlie
Your POST data is probably getting lost during the redirect to
/some/other/url/. This is a common mistake, see
http://code.djangoproject.com/wiki/NewbieMistakes. Does
action="/some/other/url/" work for you?
Andreas
Thank you so much that was really begining to frustrate. Probably
should have read the newbie gaffs wiki before I even started