On Thu, Mar 09, 2006 at 11:21:38PM +0800, limodou wrote: > Please check this document http://code.djangoproject.com/wiki/NewbieMistakes > It seems that you lost a '/' after action name "rated".
Whoa! Thanks!!! That did it! I never even thought of that because my url pattern had a "rated/$" and it got to my view... AND the documentation on forms shows an action with no trailing slash for "create_form" so I never thought that a trailing slash was needed. see http://www.djangoproject.com/documentation/forms/ in the finished version of the "create_form" template it uses "action="." with no trailing slash. So, why is it that action="." as in the documentation with no trailing slash is ok but action="rated" isn't ok? Is "." a special case (if so, then why use that in the documentation as the example of how to do a change_form), or is the finished version of the change_form wrong? -- Glenn --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users -~----------~----~----~----~------~----~------~--~---

