[Answer]-How do I reference Django 1.5 URLs that are "named" in an included URL file?

1👍

Get rid of the $ in your url(r'^accounts/$', include('accounts.urls'), call.

Note that the regular expressions in this example don’t have a $ (end-of-string match character) but do include a trailing slash.

https://docs.djangoproject.com/en/dev/topics/http/urls/#including-other-urlconfs

Leave a comment