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
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
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
3 matches
Mail list logo