from django.contrib.auth.decorators import login_required from django.shortcuts import render from django.utils.decorators import method_decorator from django.views.generic import TemplateView @method_decorator(login_required, name='dispatch') class HomeView(TemplateView): template_name = 'base/home.html'