I would like to make a lists page with item such as /lists and have items such as /lists/node-js The url pattern I'm using is this -
url(r'^lists/(?P<foo>[\w\-]+)/$', views.lists_template, name='lists_template'),
but due to this /lists does not work and shows a page not found error.How do I solve this?
+with*.