I am trying to make pretty meaningful urls, but I guess I\'m doing it wrong.
This works:
from django.conf.urls.defaults import patterns, url
from places.
For me, I forgot the namespace of the Route. Instead of
{% url 'login' %}
I should have written
{% url 'accounts:login' %}
with this configuration:
# root URLs
url(r'^accounts/', include('myproject.accounts.accounts.urls', namespace='accounts'))
# accounts URLs
url(r'^login$', views.login, name='login')