Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

how to add decorators with class in django

from django.utils.decorators import method_decorator
from django.contrib.auth.decorators import login_required

#AS example
class ProfileView(View):
    @method_decorator(login_required(login_url='login'))
    def get(self, request):
      .......
 
PREVIOUS NEXT
Tagged: #add #decorators #class #django
ADD COMMENT
Topic
Name
8+6 =