django-allauth-ens/allauth_ens/views.py

12 lines
338 B
Python
Raw Normal View History

2017-08-03 12:40:52 +02:00
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()