Created
March 5, 2013 16:01
-
-
Save thisboyiscrazy/5091345 to your computer and use it in GitHub Desktop.
A TemplateView mixed with a Login Required view
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from django.contrib.auth.decorators import login_required | |
from django.utils.decorators import method_decorator | |
from django.views.generic import TemplateView | |
class LoginRequiredMixin(object): | |
@method_decorator(login_required) | |
def dispatch(self, *args, **kwargs): | |
return super(LoginRequiredMixin, self).dispatch(*args, **kwargs) | |
class LoginRequiredTemplateView(LoginRequiredMixin,TemplateView): | |
pass |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment