I have an error message on django 1.4:
dictionary update sequence element #0 has length 1; 2 is required
[EDIT]
It happe
Pass a keyword argument name with value as your view name e.g home or home-view etc. to url() function.
home
home-view
url()
url(r'^home$', 'common.views.view1', 'home'),
url(r'^home$', 'common.views.view1', name='home'),