Allows a user object to be passed to accounts.isDeveloper
This saves a trip to the database if the user object has already
been retrieved.
Patch by: Sverre Rabbelier
from django.conf.urls.defaults import *urlpatterns = patterns('', (r'^$', 'examples.views.index'), (r'^hello/', include('examples.hello.urls')),)