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?
