How to works with password change and profile update forms?How do you change the size of figures drawn with matplotlib?How can you profile a Python script?Can't add field to ModelForm at __init__IntegrityError -userprofile.u_id may not be NULL, django user registrationExtending User and UserCreationFormcustom user registration form in djangoHow to set initial value in Django UsercreationFormDjango how to save time to the forms?django : How to use signals?How to use DatetimeField in Django 2 models and Templates
How to write a macro that is braces sensitive?
Languages that we cannot (dis)prove to be Context-Free
Font hinting is lost in Chrome-like browsers (for some languages )
Which models of the Boeing 737 are still in production?
Can a Warlock become Neutral Good?
Today is the Center
"to be prejudice towards/against someone" vs "to be prejudiced against/towards someone"
Minkowski space
Is it legal for company to use my work email to pretend I still work there?
Fencing style for blades that can attack from a distance
What's the point of deactivating Num Lock on login screens?
Is a conference paper whose proceedings will be published in IEEE Xplore counted as a publication?
What is the word for reserving something for yourself before others do?
Modeling an IPv4 Address
Can I ask the recruiters in my resume to put the reason why I am rejected?
How is the claim "I am in New York only if I am in America" the same as "If I am in New York, then I am in America?
Can I make popcorn with any corn?
Collect Fourier series terms
What are the differences between the usage of 'it' and 'they'?
What's the output of a record cartridge playing an out-of-speed record
How is it possible to have an ability score that is less than 3?
can i play a electric guitar through a bass amp?
Arthur Somervell: 1000 Exercises - Meaning of this notation
How can I make my BBEG immortal short of making them a Lich or Vampire?
How to works with password change and profile update forms?
How do you change the size of figures drawn with matplotlib?How can you profile a Python script?Can't add field to ModelForm at __init__IntegrityError -userprofile.u_id may not be NULL, django user registrationExtending User and UserCreationFormcustom user registration form in djangoHow to set initial value in Django UsercreationFormDjango how to save time to the forms?django : How to use signals?How to use DatetimeField in Django 2 models and Templates
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;
I've found some examples of this, but I want to know what the best use is for my case.
Basically, I have a form for: changing the user password and updating the session hash (I think that's how PasswordChangeView works), and another form, to change user data such as username and country.
I was trying to do this with several views returning to the same url, but I lost some control over the fields, and it still got a bit inconsistent, since it will only redirect to the same page on success, and I I want the user to always stay on the same page.
Any tips for working with this?
I think I can do this with functions quietly, but it would have a very bloated code, and I'm looking for a more "clean" alternative.
ps: my views:
class PasswordChangePage(
SuccessMessageMixin, LoginRequiredMixin, auth_views.PasswordChangeView
):
"""
Change password and return redirect
"""
template_name = "users/registration/password_change.html"
success_url = reverse_lazy("users:settings")
success_message = "password changed"
and
class UserEditPage(LoginRequiredMixin, generic.View):
def get(self, request, *args, **kwargs):
template_name = "users/registration/update.html"
form = ProfileUpdateForm(instance=request.user)
context = "form": form
return render(request, template_name, context)
def post(self, request, *args, **kwargs):
form = ProfileUpdateForm(request.POST, instance=request.user)
if form.is_valid():
form.save()
messages.add_message(
request, messages.SUCCESS, "profile updated"
)
return redirect("users:settings")
the forms:
from django.contrib.auth.forms import UserCreationForm, UserChangeForm
from django.contrib.auth import get_user_model
User = get_user_model()
class ProfileCreationForm(UserCreationForm):
# have default fields: password1/2
class Meta:
model = User
fields = ("username", "email", "country")
class ProfileUpdateForm(UserChangeForm):
# have only 3 fields to update
class Meta:
model = User
fields = ("username", "email", "country")
python django
add a comment |
I've found some examples of this, but I want to know what the best use is for my case.
Basically, I have a form for: changing the user password and updating the session hash (I think that's how PasswordChangeView works), and another form, to change user data such as username and country.
I was trying to do this with several views returning to the same url, but I lost some control over the fields, and it still got a bit inconsistent, since it will only redirect to the same page on success, and I I want the user to always stay on the same page.
Any tips for working with this?
I think I can do this with functions quietly, but it would have a very bloated code, and I'm looking for a more "clean" alternative.
ps: my views:
class PasswordChangePage(
SuccessMessageMixin, LoginRequiredMixin, auth_views.PasswordChangeView
):
"""
Change password and return redirect
"""
template_name = "users/registration/password_change.html"
success_url = reverse_lazy("users:settings")
success_message = "password changed"
and
class UserEditPage(LoginRequiredMixin, generic.View):
def get(self, request, *args, **kwargs):
template_name = "users/registration/update.html"
form = ProfileUpdateForm(instance=request.user)
context = "form": form
return render(request, template_name, context)
def post(self, request, *args, **kwargs):
form = ProfileUpdateForm(request.POST, instance=request.user)
if form.is_valid():
form.save()
messages.add_message(
request, messages.SUCCESS, "profile updated"
)
return redirect("users:settings")
the forms:
from django.contrib.auth.forms import UserCreationForm, UserChangeForm
from django.contrib.auth import get_user_model
User = get_user_model()
class ProfileCreationForm(UserCreationForm):
# have default fields: password1/2
class Meta:
model = User
fields = ("username", "email", "country")
class ProfileUpdateForm(UserChangeForm):
# have only 3 fields to update
class Meta:
model = User
fields = ("username", "email", "country")
python django
add a comment |
I've found some examples of this, but I want to know what the best use is for my case.
Basically, I have a form for: changing the user password and updating the session hash (I think that's how PasswordChangeView works), and another form, to change user data such as username and country.
I was trying to do this with several views returning to the same url, but I lost some control over the fields, and it still got a bit inconsistent, since it will only redirect to the same page on success, and I I want the user to always stay on the same page.
Any tips for working with this?
I think I can do this with functions quietly, but it would have a very bloated code, and I'm looking for a more "clean" alternative.
ps: my views:
class PasswordChangePage(
SuccessMessageMixin, LoginRequiredMixin, auth_views.PasswordChangeView
):
"""
Change password and return redirect
"""
template_name = "users/registration/password_change.html"
success_url = reverse_lazy("users:settings")
success_message = "password changed"
and
class UserEditPage(LoginRequiredMixin, generic.View):
def get(self, request, *args, **kwargs):
template_name = "users/registration/update.html"
form = ProfileUpdateForm(instance=request.user)
context = "form": form
return render(request, template_name, context)
def post(self, request, *args, **kwargs):
form = ProfileUpdateForm(request.POST, instance=request.user)
if form.is_valid():
form.save()
messages.add_message(
request, messages.SUCCESS, "profile updated"
)
return redirect("users:settings")
the forms:
from django.contrib.auth.forms import UserCreationForm, UserChangeForm
from django.contrib.auth import get_user_model
User = get_user_model()
class ProfileCreationForm(UserCreationForm):
# have default fields: password1/2
class Meta:
model = User
fields = ("username", "email", "country")
class ProfileUpdateForm(UserChangeForm):
# have only 3 fields to update
class Meta:
model = User
fields = ("username", "email", "country")
python django
I've found some examples of this, but I want to know what the best use is for my case.
Basically, I have a form for: changing the user password and updating the session hash (I think that's how PasswordChangeView works), and another form, to change user data such as username and country.
I was trying to do this with several views returning to the same url, but I lost some control over the fields, and it still got a bit inconsistent, since it will only redirect to the same page on success, and I I want the user to always stay on the same page.
Any tips for working with this?
I think I can do this with functions quietly, but it would have a very bloated code, and I'm looking for a more "clean" alternative.
ps: my views:
class PasswordChangePage(
SuccessMessageMixin, LoginRequiredMixin, auth_views.PasswordChangeView
):
"""
Change password and return redirect
"""
template_name = "users/registration/password_change.html"
success_url = reverse_lazy("users:settings")
success_message = "password changed"
and
class UserEditPage(LoginRequiredMixin, generic.View):
def get(self, request, *args, **kwargs):
template_name = "users/registration/update.html"
form = ProfileUpdateForm(instance=request.user)
context = "form": form
return render(request, template_name, context)
def post(self, request, *args, **kwargs):
form = ProfileUpdateForm(request.POST, instance=request.user)
if form.is_valid():
form.save()
messages.add_message(
request, messages.SUCCESS, "profile updated"
)
return redirect("users:settings")
the forms:
from django.contrib.auth.forms import UserCreationForm, UserChangeForm
from django.contrib.auth import get_user_model
User = get_user_model()
class ProfileCreationForm(UserCreationForm):
# have default fields: password1/2
class Meta:
model = User
fields = ("username", "email", "country")
class ProfileUpdateForm(UserChangeForm):
# have only 3 fields to update
class Meta:
model = User
fields = ("username", "email", "country")
python django
python django
asked Mar 21 at 23:42
marcos souzamarcos souza
707
707
add a comment |
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55290826%2fhow-to-works-with-password-change-and-profile-update-forms%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55290826%2fhow-to-works-with-password-change-and-profile-update-forms%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown