Как создать профиль пользователя для; 'RelatedObjectDoesNotExist: User has no userprofile' в Django
Мне нужно создать агентов для моих лидов, но я столкнулся с проблемой. Когда я выполняю код, он работает, но когда я хочу создать агента, выскакивает эта ошибка. leads.models.User.userprofile.RelatedObjectDoesNotExist: User has no userprofile
Это мой agents apps views.py
from django.views import generic
from django.contrib.auth.mixins import LoginRequiredMixin
from django.shortcuts import reverse
from leads.models import Agent
from .forms import AgentModelForm
class AgentListView(LoginRequiredMixin, generic.ListView):
template_name = "agents/agent_list.html"
def get_queryset(self):
return Agent.objects.all()
class AgentCreateView(LoginRequiredMixin, generic.CreateView):
template_name = "agents/agent_create.html"
form_class = AgentModelForm
def get_success_url(self):
return reverse("agents:agent-list")
def form_valid(self, form):
agent = form.save(commit = False)
agent.organisation = self.request.user.userprofile
agent.save()
return super(AgentCreateView, self).form_valid(form)
Третья строка снизу - это то, что, по моему мнению, вызывает сообщение об ошибке. Вот полное сообщение об ошибке
Internal Server Error: /agents/create
Traceback (most recent call last):
File "C:\Users\USER\AppData\Local\Programs\Python\Python311\Lib\site-packages\django\core\handlers\exception.py", line 55, in inner
response = get_response(request)
^^^^^^^^^^^^^^^^^^^^^
File "C:\Users\USER\AppData\Local\Programs\Python\Python311\Lib\site-packages\django\core\handlers\base.py", line 197, in _get_response
response = wrapped_callback(request, *callback_args, **callback_kwargs)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "C:\Users\USER\AppData\Local\Programs\Python\Python311\Lib\site-packages\django\views\generic\base.py", line 104, in view
return self.dispatch(request, *args, **kwargs)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "C:\Users\USER\AppData\Local\Programs\Python\Python311\Lib\site-packages\django\contrib\auth\mixins.py", line 73, in dispatch
return super().dispatch(request, *args, **kwargs)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "C:\Users\USER\AppData\Local\Programs\Python\Python311\Lib\site-packages\django\views\generic\base.py", line 143, in dispatch
return handler(request, *args, **kwargs)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "C:\Users\USER\AppData\Local\Programs\Python\Python311\Lib\site-packages\django\views\generic\edit.py", line 182, in post
return super().post(request, *args, **kwargs)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "C:\Users\USER\AppData\Local\Programs\Python\Python311\Lib\site-packages\django\views\generic\edit.py", line 151, in post
return self.form_valid(form)
^^^^^^^^^^^^^^^^^^^^^
File "C:\Users\USER\Desktop\djang0\agents\views.py", line 22, in form_valid
agent.organisation = self.request.user.userprofile
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "C:\Users\USER\AppData\Local\Programs\Python\Python311\Lib\site-packages\django\utils\functional.py", line 253, in inner
return func(_wrapped, *args)
^^^^^^^^^^^^^^^^^^^^^
File "C:\Users\USER\AppData\Local\Programs\Python\Python311\Lib\site-packages\django\db\models\fields\related_descriptors.py", line 524, in __get__
raise self.RelatedObjectDoesNotExist(
leads.models.User.userprofile.RelatedObjectDoesNotExist: User has no userprofile.
[22/Feb/2024 19:00:42] "POST /agents/create HTTP/1.1" 500 102374
Примечание: Это мое первое приложение на Django, и я все еще изучаю python. Любая помощь будет очень признательна.