开发者

Restrict access to all the pages in a django app

I want to restri开发者_Python百科ct access to all url(r'^engg/', include('engg.urls')), and allow users to access them only if request.user.profile.type is 'E' . What is a simple way to do this except creating a decorator and applying it to every single view in engg/views.py ?


If you don't want to decorate each view separately you should use use a middleware.

Shouldn't be to hard to adapt the examples in this thread.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜