[Answer]-Circular dependency? Reverse for 'home' with arguments '()' and keyword arguments '{}' not found

1👍

Reverse only works with named url patterns. You need to do:

urlpatterns = patterns('main.views',
    url(r'^$', 'home', name='home'),
)

in order to do:

reverse('home')

Leave a comment