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 SettingsAccount(TemplateView): template_name = 'account/settings.html' account_settings = SettingsAccount.as_view()