The urls are a first come first served ... that is the first url that match
is served
On your url file there are 4 urls that match on the same pattern. I
recommend you to write urls that are impossible to match against each
other, and if some url is able to match others write that one in the last
Good After Django Users
I still have problems with urls.
Please somebody should take a carful look at this urls
urlpatterns = patterns('',
url(r'^admin/', include(admin.site.urls)),
#new urls
url(r'^$', PostListView.as_view(), name='news-list'),
url(r'^(?P[-_\w]+)/$', PostDetailV
Good After Django Users
I still have problems with urls.
Please somebody should take a carful look at this urls
urlpatterns = patterns('',
url(r'^admin/', include(admin.site.urls)),
#new urls
url(r'^$', PostListView.as_view(), name='news-list'),
url(r'^(?P[-_\w]+)/$', PostDetailV
3 matches
Mail list logo