Re: url probs

2014-07-19 Thread monoBOT
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

url probs

2014-07-19 Thread ngangsia akumbo
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

url probs

2014-07-19 Thread ngangsia akumbo
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