Re: profile page and new user will not save

2022-03-09 Thread 'Delvin Alexander' via Django users
Sorry for the late reply, but here is my signlay.py file from django.db.models.signals import post_save from django.contrib.auth.models import User from django.dispatch import receiver from .models import Profile @receiver(post_save, sender=User) def create_profile(sender, instance, created, **k

Re: profile page and new user will not save

2022-02-23 Thread Omkar Parab
Something went wrong with the signals. Paste your signals.py file. On Wed, Feb 23, 2022, 10:52 AM 'Delvin Alexander' via Django users < django-users@googlegroups.com> wrote: > Hello Everyone, > > I am having trouble saving a new profile, and user when they are created. > Upon creating a new user

profile page and new user will not save

2022-02-22 Thread 'Delvin Alexander' via Django users
Hello Everyone, I am having trouble saving a new profile, and user when they are created. Upon creating a new user and profile, i get this: "TypeError: Profile.save() got an unexpected keyword argument 'force_insert'" Would anyone know why this is popping up for me Here is my work for th