Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

At the url /sites/1 I have a form:

<form action="." method="post">
...

However when I submit it, it is handled at /sites/ by a different view, causing an error.

Here is my urls.py:

url(r'^sites/$', 'app.views.sites_view'),
url(r'^sites/(?P<site_id>\d+)$', 'app.views.site_view'),
...

What's going wrong?

share|improve this question

2 Answers

up vote 2 down vote accepted

Your URLs are not consistent in their use of trailing slashes.

The browser treats URLs as a directory structure. . means the root of the current "directory". If you're at /sites/1, then the "current directory" is /sites/. If you were at /sites/1/ - ie with a trailing slash, as recommended in the Django docs - then the current directory will still be /sites/1/.

Ensure all your URLs end with slashes, and use the default append slash functionality to redirect to the slash-appended version of any URL.

share|improve this answer

action should have the {% url current_view_name %} value

e.g.

url(r'^sites/$', 'app.views.sites_view'),
url(r'^sites/(?P<site_id>\d+)$', 'app.views.site_view', name="sites_view"),
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.