▶️ Watch Entire Django Wednesdays Playlist ✅ Subscribe To My TH-cam Channel: bit.ly/35Xo9jD bit.ly/2IGzvOR ▶️ See More At: ✅ Join My Facebook Group: Codemy.com bit.ly/2GFmOBz ▶️ Learn to Code at Codemy.com ✅ Buy a Codemy T-Shirt! Take $30 off with coupon code: youtube1 bit.ly/2VC9WUN
You already taught me python, SQL, then flask, now im learning django. I cant engage with most other tutorials. And these skills have helped net me an extra 10k a year. I cant thank you enough.
John, I'd like to learn how to first, load the calendar on a separate page and then make the full calendar clickable to list the events for that month. Maybe even make the dates on the calendar clickable. Can you revisit the calendar portion to do this? Loving the content.
Hi John, how would you do it if you wanted the navbar button to always lead to the current month and not "March'? How would you put it in your href? Thanks in advance!
Hi John, I'm quite new to coding and I'm having a little bit of an issue with the html templates. Whenever I try to include the navbar.html file in the base.html file, I get a max recursion error. Is there a way I can work around this? I'm currently doing the directories slightly different. The base, navbar and home.html files are in a separate "templates" directory, which is one folder up (same level as events app) to centralize everything. The other web page .html file is in the templates directory inside the events app. I Hope what i said is not too confusing. Thank you for the great videos, you have taught me a great deal!!
Just an FYI on the Base HTML definition {% extends "events/base.html" %} in the home.html. This was defined in the video with single quote marks [' '], did not work. Changed to double quotes [" "] now works okay. Platform: Windows 10, Django 3.2.5.
Love your tutorials, thank you so much for all you do! I am having an issue with passing parameters to the URL tag. When I add the year and month parameter ( {% url 'home' '2021' 'November' %} I get a template rendering error "Reverse for 'home' with arguments '2021' and 'November' not found. 1 pattern tried: ['$']. Do you or anyone who reads this know what I'm doing wrong?
this might be too late but might be helpful for anyone who might stumble upon this error in the future. You probably have either commented out the path('/',.....) or deleted it. Don't do that keep it.
Hi John!! i have question. i extends base.html like{%extends 'events/base.html'%} but it didnt work but instead i use only base like {%extends 'base.html'%}than it worked. so why is that happened???? Thank you for answer:)
Hi in the end it gives me this error: "Reverse for 'home' with arguments '('2021', 'March')' not found. 1 pattern(s) tried: ['$']" what i'm doing wrong? thanks
Hi, the problem is in your urls.py file your second path has it's name as 'Home' with capital 'H' as we saw him do in the first place, simply change that to lower case 'h' and it will work, like this: urlpatterns = [ path('', views.home, name="home"), path('//', views.home, name="home"), ]
what do you mean? Django is a web framework to build websites... Comparing two products is just a matter of the HTML code you use, it's nothing to do with Django...
▶️ Watch Entire Django Wednesdays Playlist ✅ Subscribe To My TH-cam Channel:
bit.ly/35Xo9jD bit.ly/2IGzvOR
▶️ See More At: ✅ Join My Facebook Group:
Codemy.com bit.ly/2GFmOBz
▶️ Learn to Code at Codemy.com ✅ Buy a Codemy T-Shirt!
Take $30 off with coupon code: youtube1 bit.ly/2VC9WUN
You already taught me python, SQL, then flask, now im learning django. I cant engage with most other tutorials. And these skills have helped net me an extra 10k a year. I cant thank you enough.
Very happy to hear that!
I can't get enough of this Django tutorial series. It's really amazing.
I agree
Thank you John for another Django masterclass!
Thanks for watching!
Great going John, you are an awesome teacher.
Thanks! Glad you're enjoying the videos!
Great job on your Channel! I'm loving it! Cheers from BR :)
Thanks! Happy to have you here!
I like the way you teach
Thanks!
Thank you for your hard work! Emazing!
Most Walcome!
John, I'd like to learn how to first, load the calendar on a separate page and then make the full calendar clickable to list the events for that month. Maybe even make the dates on the calendar clickable. Can you revisit the calendar portion to do this? Loving the content.
Making it clickable is a bit of an issue...there's no real easy way to do it. It's possible, but it takes quite a bit...
Hi John, how would you do it if you wanted the navbar button to always lead to the current month and not "March'? How would you put it in your href? Thanks in advance!
Thanks for the great video
You're very welcome
Hi John, I'm quite new to coding and I'm having a little bit of an issue with the html templates. Whenever I try to include the navbar.html file in the base.html file, I get a max recursion error. Is there a way I can work around this? I'm currently doing the directories slightly different. The base, navbar and home.html files are in a separate "templates" directory, which is one folder up (same level as events app) to centralize everything. The other web page .html file is in the templates directory inside the events app. I Hope what i said is not too confusing.
Thank you for the great videos, you have taught me a great deal!!
that's gooooood thanks❤❤❤
Great video, Thank you!!
Glad you liked it!
Just an FYI on the Base HTML definition {% extends "events/base.html" %} in the home.html. This was defined in the video with single quote marks [' '], did not work. Changed to double quotes [" "] now works okay. Platform: Windows 10, Django 3.2.5.
Thank you for your efforts sir
It's my pleasure
like your videos keep it up
There's a ton more videos on this playlist already.
Great video ✌️👌
Thanks!
Love your tutorials, thank you so much for all you do!
I am having an issue with passing parameters to the URL tag. When I add the year and month parameter ( {% url 'home' '2021' 'November' %} I get a template rendering error "Reverse for 'home' with arguments '2021' and 'November' not found. 1 pattern tried: ['$']. Do you or anyone who reads this know what I'm doing wrong?
You likely have a typo or error of some kind in your code. Rewatch the videos and check your code till you find it...
this might be too late but might be helpful for anyone who might stumble upon this error in the future. You probably have either commented out the path('/',.....) or deleted it. Don't do that keep it.
Hi John!!
i have question. i extends base.html like{%extends 'events/base.html'%} but it didnt work
but instead i use only base like {%extends 'base.html'%}than it worked.
so why is that happened????
Thank you for answer:)
you didn't set up an events directory in your template directory did you?
"Remember me?"😍
yes
Exception Value:
'
that error is when i type year="2021", month="June" get the error, after change to datetime.now().year no error
Hi in the end it gives me this error: "Reverse for 'home' with arguments '('2021', 'March')' not found. 1 pattern(s) tried: ['$']" what i'm doing wrong? thanks
Hi, the problem is in your urls.py file your second path has it's name as 'Home' with capital 'H' as we saw him do in the first place, simply change that to lower case 'h' and it will work, like this:
urlpatterns = [
path('', views.home, name="home"),
path('//', views.home, name="home"),
]
I have a question. How can we show dynamic time(hour, minute and second) in django?
Same way you would with any python code
THanks you helped me
Glad to help!
Brilliant
🙂
yaa! but, How Do I use CSS manually, In this Calendar project.
Hello sir, please make a video on how to compare two products using django.
what do you mean? Django is a web framework to build websites... Comparing two products is just a matter of the HTML code you use, it's nothing to do with Django...
Thank you
Welcome
How to change the color of text in navbar?
In the same way you change the color of anything in bootstrap.
@@Codemycom would you explain more? I just learned python and started django and don't know anything about bootstrap
@@amineslami2946 I have a course on Bootstrap for sale at Codemy.com
Thanks sir
My pleasure
😍😍😍
🙂
tnx man i subscribe u
Thanks!
Can you say how to make a search bar
Sure, but we've got one already...it just doesn't search anything...
And how to make an Afflicate marketing website with real world things which helps to earn please suggest sir please . Job Lost so please help sir
I have a playlist with some affiliate marketing website videos
I was told that before I can learn django I must first learn HTML,CSS and JavaScript ,pls how true is it
Not true at all, as you can see for yourself by watching these videos
@@Codemycom OK thanks
Why are you not liking this video?
Ha
Where to get free bootstrap Templates sir
Just google it, there are thousands
another comment for the yt algorythm
Thanks!
Sometimes its annoying that we cant see the whole code
You can see the whole code. You just have to navigate to the part of the video where I type it, and pause it. Or check my github.