tdg_rocks/dashboard/views.py

9 lines
288 B
Python

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"