rename second_form to profile_form

This commit is contained in:
Pierre-antoine Comby 2020-03-03 14:25:16 +01:00
parent 211859e940
commit f992c117f4
1 changed files with 2 additions and 4 deletions

View File

@ -58,14 +58,12 @@ class UserUpdateView(LoginRequiredMixin, UpdateView):
fields = ['first_name', 'last_name', 'username', 'email']
template_name = 'member/profile_update.html'
context_object_name = 'user_object'
second_form = ProfileForm
profile_form = ProfileForm
def get_context_data(self, **kwargs):
context = super().get_context_data(**kwargs)
context["profile_form"] = self.second_form(
instance=context['user_object'].profile)
context['profile_form'] = self.profile_form(instance=context['user_object'].profile)
context['title'] = _("Update Profile")
return context
def get_form(self, form_class=None):