I have the following url:
This gives me a 404 page not found.
If I try this: it find my url entry no problem. http://mysite.com/config/1/
This what my url pattern looks like:
url(r'^config/(?P<config_id>\d+)/$', views.config, name='config'),
Is there a problem with having the colon in the url?