mirror of
https://github.com/jointakahe/takahe.git
synced 2024-11-14 03:11:46 +00:00
27 lines
711 B
Python
27 lines
711 B
Python
|
from django import forms
|
||
|
from django.utils.decorators import method_decorator
|
||
|
from django.views.generic import FormView
|
||
|
|
||
|
from users.decorators import identity_required
|
||
|
|
||
|
|
||
|
@method_decorator(identity_required, name="dispatch")
|
||
|
class SecurityPage(FormView):
|
||
|
"""
|
||
|
Lets the identity's profile be edited
|
||
|
"""
|
||
|
|
||
|
template_name = "settings/login_security.html"
|
||
|
extra_context = {"section": "security"}
|
||
|
|
||
|
class form_class(forms.Form):
|
||
|
email = forms.EmailField(
|
||
|
disabled=True,
|
||
|
help_text="Your email address cannot be changed yet.",
|
||
|
)
|
||
|
|
||
|
def get_initial(self):
|
||
|
return {"email": self.request.user.email}
|
||
|
|
||
|
template_name = "settings/login_security.html"
|