On 6/6/06, Elver Loho <[EMAIL PROTECTED]> wrote:
> Anyhow, the code.
>
>
> URL:
> (r'^make/$', 'latestbooks.latest.views.make_sidebar'),
>
> HTML:
> <form action="/make" method="POST">

Your form is pointing at /make, but your view is at /make/ (note the
trailing slash). Django's CommonMiddleware is automatically adding the
slash (according to the APPEND_SLASH setting), and POST data isn't
transferred in redirects. Point the form action at /make/ (with the
trailing slash) and your problem should be solved.

Adrian

-- 
Adrian Holovaty
holovaty.com | djangoproject.com

--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to