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;








0















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")









share|improve this question




























    0















    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")









    share|improve this question
























      0












      0








      0








      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")









      share|improve this question














      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






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Mar 21 at 23:42









      marcos souzamarcos souza

      707




      707






















          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
          );



          );













          draft saved

          draft discarded


















          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















          draft saved

          draft discarded
















































          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.




          draft saved


          draft discarded














          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





















































          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







          Popular posts from this blog

          Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

          SQL error code 1064 with creating Laravel foreign keysForeign key constraints: When to use ON UPDATE and ON DELETEDropping column with foreign key Laravel error: General error: 1025 Error on renameLaravel SQL Can't create tableLaravel Migration foreign key errorLaravel php artisan migrate:refresh giving a syntax errorSQLSTATE[42S01]: Base table or view already exists or Base table or view already exists: 1050 Tableerror in migrating laravel file to xampp serverSyntax error or access violation: 1064:syntax to use near 'unsigned not null, modelName varchar(191) not null, title varchar(191) not nLaravel cannot create new table field in mysqlLaravel 5.7:Last migration creates table but is not registered in the migration table

          은진 송씨 목차 역사 본관 분파 인물 조선 왕실과의 인척 관계 집성촌 항렬자 인구 같이 보기 각주 둘러보기 메뉴은진 송씨세종실록 149권, 지리지 충청도 공주목 은진현