I have a url(r'^manager/', include('manager.urls')) and I want only logged in users can access it. So, I tried to write url(r'^manager/', login_required(include('manager.urls'))), but it throws
TypeError at /manager/
'tuple' object is not callable
Is there other way to implement it or should I write @login_required decorator for every view in manager.views.py?