blob: e6b90b11b3658871b69fa475afb340603bd58bd8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
# -*- coding: utf-8 -*-
"""
views.py of app 'account'
"""
from django.shortcuts import render
from django.views.generic.base import TemplateView
from django.views.generic.edit import UpdateView
from django.core.urlresolvers import reverse_lazy
from django.http import HttpResponseRedirect
from account.models import UserProfile
from account.forms import UpdateProfileForm
###### Class-based views ######
class ProfileView(TemplateView):
"""
class view to show profile page
"""
template_name = 'account/profile.html'
def get_context_data(self, **kwargs):
context = super(ProfileView, self).get_context_data(**kwargs)
user = self.request.user
profile = user.userprofile_set.get(user=user)
context['user'] = user
context['profile'] = profile
return context
class UpdateProfileView(UpdateView):
form_class = UpdateProfileForm
model = UserProfile
template_name = 'account/profile_update.html'
success_url = reverse_lazy('profile_update_done')
# get profile object
def get_object(self, queryset=None):
user = self.request.user
profile = user.userprofile_set.get(user=user)
return profile
def get(self, request, *args, **kwargs):
"""
Returns the keyword arguments for instantiating the form.
modify this method to add 'email' data
"""
self.object = self.get_object()
form_class = self.get_form_class()
form = self.get_form(form_class)
# initialize form 'email' field
user = self.request.user
form.fields['email'].initial = user.email
return self.render_to_response(self.get_context_data(form=form))
def form_valid(self, form):
"""
modify 'form_valid' to update email field
"""
form_data = form.cleaned_data
# update email and save
user = self.request.user
user.email = form_data.get('email', user.email)
user.save()
return super(UpdateProfileView, self).form_valid(form)
|