Pass on the I'd in url, use that id in function based view, with method of quesryset Somemodel.objects.filter(id=id).update(field=value). You must use PUT method of request to do this.
Sir when I do /accounts/logout/ at 15:50 , it is not redirecting to Django administration Logged out, but showing 'This page is not working HTTP ERROR 405'... Sir can you help me.... Tell me why
hi sir, @15:42 when you sign in, you get redirected to the home.html page and later when you sign up, you get redirected to the sign in page. I'm not getting redirected in both cases. Will this issue be solved if I change the django version as I'm using the latest 5.1.1 version.
Honestly I'm trying to follow each and every step but when i see an error it angers me a lot. I don't know what's the problem whenever i try to do something it never gets completed. In this tutorial when you do something it goes well but when i do it something pops up
@@rohan-yeole i had an html login page with a simple for ... I added the csrf_token in the form and it is showing it in the Html browser view as a text. Next i had created another page Dashboard.html where when i click on the Sign In button on the login.html page it would redirect it to the dashboard.html. but it is showing some error says template does not exist at accounts/login
Hello. I don't know why in my views.py return render(request,"home.html", {}) comes with exception thrown 'base' is not a registered namespace. Please help me out on this.
@@rohan-yeole I'm having this error: ==============error=================== AttributeError at /signup/ 'WSGIRequest' object has no attribute 'thod' Django Version: 3.2.9 Python Version: 3.10.0 Installed Applications: ['django.contrib.admin', 'django.contrib.auth', 'django.contrib.contenttypes', 'django.contrib.sessions', 'django.contrib.messages', 'django.contrib.staticfiles', 'base'] Installed Middleware: ['django.middleware.security.SecurityMiddleware', 'django.contrib.sessions.middleware.SessionMiddleware', 'django.middleware.common.CommonMiddleware', 'django.middleware.csrf.CsrfViewMiddleware', 'django.contrib.auth.middleware.AuthenticationMiddleware', 'django.contrib.messages.middleware.MessageMiddleware', 'django.middleware.clickjacking.XFrameOptionsMiddleware'] ==============error=================== Am I missing referrences? like applicaation to install in pip? or is it the version of python I'm using?
@@rohan-yeole when I implement this code: if request.thod == "POST": # form = UserCreationForm(request.POST or None) # if form.is_valid(): # form.save() # username = form.cleaned_data.get('username') # else: # form = UserCreationForm() # return render(request, "registration/signup.html", {"form": form}) but whit this no error: def authView(request): form = UserCreationForm() return render(request, "registration/signup.html", {"form": form})
@@rohan-yeole after I implement this: def authView(request): if request.thod == "POST": form = UserCreationForm(request.POST or None) if form.is_valid(): form.save() username = form.cleaned_data.get('username') else: form = UserCreationForm() return render(request, "registration/signup.html", {"form": form}) ======================================================================= but this I have no error: def authView(request): form = UserCreationForm() return render(request, "registration/signup.html", {"form": form})
Thanks for letting me know. I have update in description. sharing here too github.com/yeole-rohan/User-Authentication-and-User-Signup-in-Python-using-Django-/tree/main
The logout _user is my url path for logout view. logout(request) is inbuilt function. def logout_user(request): logout(request) messages.success(request, "Logged Out") return render(request, login.html)
@@rohan-yeoleafter updating sign up.html and login.html after 9:13 I’m unable to see username sign up submit form on front end it shows Template doesn’t exist at signup where I wrote the same code as you mentioned in signup and login file
For signup as u mentioned you will have to create a form. If you follow ahead you will be able to create a form and can see it on frontend. For template not exist make sure in view provided correct path in render method. Additionally in settings file, to templates block make sure to add BASE_DIR / "templates". Hope this will help. I urge you go over all tutorial. Your doubt will be solved. Thanks
after updating sign up.html and login.html after 9:13 I’m unable to see username sign up submit form on front end it shows Template doesn’t exist at signup where I wrote the same code as you mentioned in signup and login file.
@@rohan-yeole I registered and then logged in , then it worked . I was directly trying to login(was my mistake) , anyways thanks for the video it was great👍
Please create more tutorials like this one... pretty impressive and straightforward
How to update the page for the note sharing app
Pass on the I'd in url, use that id in function based view, with method of quesryset
Somemodel.objects.filter(id=id).update(field=value).
You must use PUT method of request to do this.
If you have some error with logut the last version has differents problems with this, I recomend you django 4.2 version
4.2 is more stable than latest.
The best video on the topic so far
thank you.
Sir when I do /accounts/logout/ at 15:50 , it is not redirecting to Django administration Logged out, but showing 'This page is not working HTTP ERROR 405'... Sir can you help me.... Tell me why
Sir problem was solved when I installed Django 4.2.8... Frist Django 5.0.4 was installed... That caused the error
this is nice. generally use django version 4.0 or 4.1, they are stable now
@@rohan-yeole I changed my install to 4.1 and 4.2.8 but still getting Method Not Allowed (GET): /accounts/logout/
Sir, whit what details you have logged in at 15:37 min
you have to crate user using Django commands
use python manage.py createsuperuser to create user.
it's not working can you send correct code to create user
hi sir, @15:42 when you sign in, you get redirected to the home.html page and later when you sign up, you get redirected to the sign in page. I'm not getting redirected in both cases. Will this issue be solved if I change the django version as I'm using the latest 5.1.1 version.
It's not an version issue...make sure you added redirect constant in setting file for logout.
Bro can u help me..I got stuck in the middle of sign up page 16:30
This is very useful for me, create more like this
Thank you so much
Teach fully advance django.custom login, logout , register, Middle were,group middle were,jet,rest API nd advance topics
thanks for suggestions, will do in sometime
Sir please make a one short for note sharing app using django
can you elaborate? didn't get it. you mean youtube short?
thanks its great but when i login at 15:50 , this error comes: TemplateDoesNotExist at / what can i do? i followed your actions
do you created html files in templates folder? can you re-check?
Honestly I'm trying to follow each and every step but when i see an error it angers me a lot. I don't know what's the problem whenever i try to do something it never gets completed. In this tutorial when you do something it goes well but when i do it something pops up
what is happening?
@@rohan-yeole i had an html login page with a simple for ... I added the csrf_token in the form and it is showing it in the Html browser view as a text. Next i had created another page Dashboard.html where when i click on the Sign In button on the login.html page it would redirect it to the dashboard.html. but it is showing some error says template does not exist at accounts/login
that's just the nature of being a programmer, encountering errors is the only constant
Hello. I don't know why in my views.py return render(request,"home.html", {}) comes with exception thrown 'base' is not a registered namespace. Please help me out on this.
This you created base.html file?, I think not, make sure you have that in templates folder
in the video you didn't complete the if else loop but how it is working for you
which if else? any context?
Do i need to set the project in virtual box ?
you can!
I have a doubt without creating database directly we can store new users
can you elaborate?
Thank You so Much sir 😍
sir, from the login page I can't go to the home page. it says page not found. please help me sir, I got stuck here.
did you added login_redirect_url = '/' in settings file?
@@rohan-yeole I updated the settings, and now it is working fine. Thank you so much for the excellent video. Hope we get more videos in the future.
can you send proper code to update there
Logout 405 error /Same problem sir can you show the def function of logout and logout.html file
please refer github link
Still same error @@rohan-yeole
Bro can u pls share your video link : Django Deployment
what exactly "Django Deployment" on?
@@rohan-yeole anyone bro but I want to make my project into live 😞 share one best vidoe
@@thehindu9972 here its a free platform th-cam.com/video/-5Ft9WOWPGQ/w-d-xo.htmlsi=x8vcRC6zdEuvbC0o
github page is not working ..could u give correct one
can u explain more?
The submit button for login page isn't working after signing up
Hello may you respond
what happened exactly. any error
I cannot open my signup page I have this Error: 'WSGIRequest' object has no attribute 'thod'
When did you get this error?
@@rohan-yeole
I'm having this error:
==============error===================
AttributeError at /signup/
'WSGIRequest' object has no attribute 'thod'
Django Version: 3.2.9
Python Version: 3.10.0
Installed Applications:
['django.contrib.admin',
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.messages',
'django.contrib.staticfiles',
'base']
Installed Middleware:
['django.middleware.security.SecurityMiddleware',
'django.contrib.sessions.middleware.SessionMiddleware',
'django.middleware.common.CommonMiddleware',
'django.middleware.csrf.CsrfViewMiddleware',
'django.contrib.auth.middleware.AuthenticationMiddleware',
'django.contrib.messages.middleware.MessageMiddleware',
'django.middleware.clickjacking.XFrameOptionsMiddleware']
==============error===================
Am I missing referrences? like applicaation to install in pip? or is it the version of python I'm using?
@@rohan-yeole when I implement this code:
if request.thod == "POST":
# form = UserCreationForm(request.POST or None)
# if form.is_valid():
# form.save()
# username = form.cleaned_data.get('username')
# else:
# form = UserCreationForm()
# return render(request, "registration/signup.html", {"form": form})
but whit this no error:
def authView(request):
form = UserCreationForm()
return render(request, "registration/signup.html", {"form": form})
@@rohan-yeole after I implement this:
def authView(request):
if request.thod == "POST":
form = UserCreationForm(request.POST or None)
if form.is_valid():
form.save()
username = form.cleaned_data.get('username')
else:
form = UserCreationForm()
return render(request, "registration/signup.html", {"form": form})
=======================================================================
but this I have no error:
def authView(request):
form = UserCreationForm()
return render(request, "registration/signup.html", {"form": form})
Did you mean to write method*
static not working for me in link href line of base.html...how to resolve this?
{% load static %} add this tag after head tag.
@@rohan-yeole already added..still giving error
@@harshalshah1058 could share code in comment, base.html
please tell how to create user
visit signup link.
nice video ver educational
can you please do one with top verification
Okay..Will see if time permits....cheers
the github link is not working
Thanks for letting me know. I have update in description. sharing here too github.com/yeole-rohan/User-Authentication-and-User-Signup-in-Python-using-Django-/tree/main
it is not logging out, I got HTTP ERROR 405
Create a form of logout and set the method to post
Logout 405 error /Same problem sir can you show the def function of logout and logout.html file
@@MerinaFidelis after that only that error
Check url and in the form
The logout _user is my url path for logout view. logout(request) is inbuilt function.
def logout_user(request):
logout(request)
messages.success(request, "Logged Out")
return render(request, login.html)
9:13 csrf is not working for me . showing templae does not exist
Sid you restarted the server after creating an html file. Django server doesn't know if a new file is created!
why did you jump steps , need to add user creation steps 15:38
Might have missed to show in video while editing.
can you tell how to add user in this sir
sir from signup page not redirecting to login page
please check redirect from signup view, should be "login"
Rohan username password button not showing up after changing signup.html file
Can you specify at what part of time and what you have changed?
@@rohan-yeoleafter updating sign up.html and login.html after 9:13 I’m unable to see username sign up submit form on front end it shows Template doesn’t exist at signup where I wrote the same code as you mentioned in signup and login file
For signup as u mentioned you will have to create a form. If you follow ahead you will be able to create a form and can see it on frontend. For template not exist make sure in view provided correct path in render method. Additionally in settings file, to templates block make sure to add BASE_DIR / "templates". Hope this will help. I urge you go over all tutorial. Your doubt will be solved. Thanks
@@rohan-yeolethanks signup is working now I didn’t created template/registration directory, now it works thanks
@@DATA_MACHINE22 what?
it is not logging out , sadly doesnt work
Does other URLS works for you? what error you faced?
With what details you have logged in at 15:37
What did you put , mine is not working
yes for me too it's not working
how did u do /accounts/logout/ at 15:50 , for me its not working
here you can find all routes
docs.djangoproject.com/en/5.0/topics/auth/default/#module-django.contrib.auth.views
My logout functionality is not working
what is actual error you are getting?
bro remove signup warnings ofc no one like this warning
Okay...but as learner person should know. Removing it may vary depending upon requirements.
after updating sign up.html and login.html after 9:13 I’m unable to see username sign up submit form on front end it shows Template doesn’t exist at signup where I wrote the same code as you mentioned in signup and login file.
Template doesn’t exist ----> this may come if you havn't added or added but didn't restarted server. please check this.
I m getting the webpage but csrf nd {{form}} is being displayed there with submit button. No username and password
@@Niketha-c6g can you discribe this "No username and password", is it label or something else?
I meqn i am not getting those when i load my webpage
thx
Redirect kaha se aya
timeframe?
@@rohan-yeole likha hai
Whats the username and password??
the one you have created. through --
python manage.py createsuperuser
@@rohan-yeole I registered and then logged in , then it worked . I was directly trying to login(was my mistake) , anyways thanks for the video it was great👍
@@rohan-yeole How would you get the registration page to automatically make that superuser for you?
@@rohan-yeoleplease tell how to create user
Sir ,I have one doubt, please give the you mail??
please reach out.
Teach fully advance django.custom login, logout , register, Middle were,group middle were,jet,rest API nd advance topics
it is not logging out , I got HTTP ERROR 405 error
same issue