from django.contrib.auth.decorators import login_required from django.utils.decorators import method_decorator from django.views.generic import TemplateView @method_decorator(login_required, name="dispatch") class Dashboard(TemplateView): template_name = "dashboard/dashboard.html"