Django-Tutorials
Django-Tutorials copied to clipboard
Source code for my free YouTube series on the Django web framework for Python.
Hello max,I get TypeError when running the server. Am new in django and python please don't mind me.
This is my urls.py- ``` `from django.contrib import admin from django.urls import include, path from graphene_django.views import GraphQLView from blog.schema import schema urlpatterns = [ path('graphql/', GraphQLView.as_view(graphicql=True, schema=schema)), ] `...
PS C:\Users\Dell\Django> python manage.py runserver Unhandled exception in thread started by Traceback (most recent call last): File "C:\Users\Dell\AppData\Local\Programs\Python\Python36\lib\site-packages\django\utils\autoreload.py", line 225, in wrapper fn(*args, **kwargs) File "C:\Users\Dell\AppData\Local\Programs\Python\Python36\lib\site-packages\django\core\management\commands\runserver.py", line 113, in inner_run...
My Registration of user in database is successful but i am unable to redirect my page to successful registration page after the registration def create_profile(sender, **kwargs): # print(sender) if kwargs['created']:...