javadvahid
Results
1
comments of
javadvahid
you can add User manually to your forms.py like below ``` from django import forms from django.contrib.auth import get_user_model from .models import Profile User = get_user_model() ``` or you can...