▶️ Watch Entire Django Wednesdays Playlist ✅ Subscribe To My UA-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
Hi John, always love your video but i got a problem here, everytime i tried to get description in 2 paragraph it always end up in 1 line, can you help me?
i have the problem that i connected myself to SQL Server 2019. i made the models based on those created in SQL with inspectdb command in python. but when i want to render objects.all() it just doesnt show anything. just a blank line. please help!
Hey John...My code isn't working. The page always shows the calendar. I used PyCharm and Django 4.0 but it didn't work, so later I installed Sublime Text and Git Bash. This time I used Django 3.1.5 using "pip install django==3.1.5" in Git Bash. But the other stuff installed with Django, like asgiref, pytz, sqlparse, were different versions than when you first installed them. But still, after doing all the code over again, it only shows the calendar. I checked it a several times but there is nothing different in yours and mine(Not even the names of the files, variable etc).
There are differences...if it was the same it would work the same. You'll have to discover them. I suggest putting it away for a few days and looking at it fresh. The versions are irrelevant.
Hi man. Can I somehow access data from Venue table and display it in Event table, but from models.py level. So just for example, in Event class I could have: def __str__(self): return self.event.venue.web? I'm stuck, I would appriciate your help very much.
hello, sir I am using MySQL workbench as a database and actually, I have not created any model, I uploaded the image using SQL query in the blob format. can I use that to display the image Django template?
MYSQL workbench isn't a database, it's just an interface for the MySQL database. If you want to use databases with django, you need a model. If you don't have a model, no, you didn't upload an image and no you can't use it.
Hi John, I am getting this error always while try to add the user in admin panel. I have tried all sorts of options or solution provide. But still not able to add the data..Error is :"No such table: main.auth_user__old"
Excellent content thank you!!! EDIT: I just previewed #6 and it appears you're covering some of the items below. :) Could you show how to add functionality for users that are event coordinators? Ex. Coordinators can filter their view of events/venues by - All', Approved', Pending', Location', Activity', I'm associated with'. Additionally, they receive an email notification when an event is approved, maybe only certain aspects of the event receive approval, requiring them to log back in, make the edits and resubmit for approval. Great series thank you for sharing your knowledge and experience!!!
Hey john I'm looking to add a job offre form in my django project were the user chose to add skills on clicks, I've tried alot to find a way with no success if you can help me out
@@Codemycom no it dosen't at all, what I want to add is a form were the user create a job offer with a description and chose to add as many skills as he wants to on clicks is it possible to do so?? I've been told that I can do that with ajax but I did not find how
Doing this it displays all data from database but i just want database of a user to be private and show their data only to them if multiple users are in database!!!! Please help on this
I seiously don't know why his videos has only a few likes and few views, he's one of my most favorite youtubers for programming and is so helpful, he deserves more than that. Like if you agree.
▶️ Watch Entire Django Wednesdays Playlist ✅ Subscribe To My UA-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
When you show how to use - awesome! Django is going to easy! Thank you very much!
Welcome!
I m just a bigginer with python but you just made django more than fun to me. Man u r amazing
Glad you're enjoying it!!
This is so cool and super easy, if you know what to do. I'm learning so much from your videos!
Awesome! Thank you!
This was exactly what I was looking for! Thanks again.
Glad I could help!
Thank you from UZBEKISTAN
You're welcome from Las Vegas ;-)
It's just matter of time when this channel will explode and became super famous
Hope so!
Great video man, very helpful!
Glad you enjoyed it!
Hey thank you for uploading these, I really enjoy your python videos.
Glad you like them!
thanks a lot, this video was really well made, I was able to understand everything even though I am a beginner
Glad it helped!
Thanks, Another Great Video as Always
Glad you enjoyed it
this Video is really Useful
Glad you liked it!
thanks for the great video hope you will dig deeper in manytomany and make a video about tabular inline in the admin
Hi John, always love your video
but i got a problem here, everytime i tried to get description in 2 paragraph it always end up in 1 line, can you help me?
Great content! As always...
Much appreciated!
i have the problem that i connected myself to SQL Server 2019. i made the models based on those created in SQL with inspectdb command in python. but when i want to render objects.all() it just doesnt show anything. just a blank line. please help!
thank you 💯💯
excellent
Thanks
good job
thanks
really nice and informative , maybe next time you can make python window little wider so we can see entire code at once ?
Thanks! No, this is how I do it.
thank you sir!
You are welcome!
Hi, is it possible to share a tutorial for nested forms using Django & HTMX, please...
Sir i want dynamic vertical menu from database can u pls explain
hey, thanks for the videos, it helped me a lot!
do you have an exemple where you use existing tables ?
you mean a database you imported externally? no.
@@eduardocardoso6286 of course. but ask what you actually want to know.
@@eduardocardoso6286 I don't have any videos on importing excel files, but a simple google search will find you hundreds of tutorials.
Really hard work❤️
thanks
Hi John
I did exactly same for creating Event page as you did in this video but my browser is still showing my the previous calendar page.
Wait a couple days and check your code with fresh eyes...you'll likely see the error then.
Hey John...My code isn't working. The page always shows the calendar. I used PyCharm and Django 4.0 but it didn't work, so later I installed Sublime Text and Git Bash. This time I used Django 3.1.5 using "pip install django==3.1.5" in Git Bash. But the other stuff installed with Django, like asgiref, pytz, sqlparse, were different versions than when you first installed them.
But still, after doing all the code over again, it only shows the calendar. I checked it a several times but there is nothing different in yours and mine(Not even the names of the files, variable etc).
There are differences...if it was the same it would work the same. You'll have to discover them. I suggest putting it away for a few days and looking at it fresh. The versions are irrelevant.
thanks!!!
Welcome!
Thanks :)
Welcome
But how to show database view data in django orm
Cheers✌️
:-)
Hi man. Can I somehow access data from Venue table and display it in Event table, but from models.py level. So just for example, in Event class I could have: def __str__(self): return self.event.venue.web? I'm stuck, I would appriciate your help very much.
For blogging real world website with custom domain names is it enough for only SQL LITE for Database or degradation is needed ?
No, you wouldn't use sqlite3 for production level websites.
so we should know about sql before learning django?
No, why would you think that? The point of a web framework like django is that you never need to know sql ever.
hello, sir I am using MySQL workbench as a database and actually, I have not created any model, I uploaded the image using SQL query in the blob format. can I use that to display the image Django template?
MYSQL workbench isn't a database, it's just an interface for the MySQL database. If you want to use databases with django, you need a model. If you don't have a model, no, you didn't upload an image and no you can't use it.
Hi John, I am getting this error always while try to add the user in admin panel. I have tried all sorts of options or solution provide. But still not able to add the data..Error is :"No such table: main.auth_user__old"
you may have misspelled something
Excellent content thank you!!!
EDIT: I just previewed #6 and it appears you're covering some of the items below. :)
Could you show how to add functionality for users that are event coordinators? Ex. Coordinators can filter their view of events/venues by - All', Approved', Pending', Location', Activity', I'm associated with'. Additionally, they receive an email notification when an event is approved, maybe only certain aspects of the event receive approval, requiring them to log back in, make the edits and resubmit for approval.
Great series thank you for sharing your knowledge and experience!!!
Noted
@@Codemycom yes please we want to learn as he stated
Hey john I'm looking to add a job offre form in my django project were the user chose to add skills on clicks, I've tried alot to find a way with no success if you can help me out
Doesn't this video show you exactly how to do it?
@@Codemycom no it dosen't at all, what I want to add is a form were the user create a job offer with a description and chose to add as many skills as he wants to on clicks is it possible to do so?? I've been told that I can do that with ajax but I did not find how
Thank you for the video. Very Good!
Why does not my attendees show on the page? Instead of the attendees, it says Admin!?
You made a mistake somewhere
You used users when it should be user in your for loop.
Doing this it displays all data from database but i just want database of a user to be private and show their data only to them
if multiple users are in database!!!! Please help on this
I have lots of django courses at codemy.com that can help you
brother of peter mackinon
Everything's ok but alignment of card/text is on right side of screen.
Kindly tell me the solution.
Simply look at your code, and then look at my code and discover the difference.
Will this work for firebase
if you modify it for firebase it will.
omg first comment too (without you)
Awesome!
12:53 important
You really don't need to post timestamps over and over again
can i use xammp dms for this?
why would you want to? You don't have to use anything but Django.
No, I am asking that question only to improve my knowledge
How to host a DJANGO website with custom domain names . Not in horoko are somethings else . Like a real world
Heroku is real world. You need a hosting company or you can't do it.
How to host our DJANGO website on AWS , Digital Ocean , Godaddy like that . Please teach on that
@@nagendranfriends3153 Sorry, I usually teach how to host them on heroku
@@Codemycom yes sir that why I requesting you to teach as real world productions sir please
@@nagendranfriends3153 Heroku IS real world production.
first like
nice!
@@Codemycom send me heart please
I seiously don't know why his videos has only a few likes and few views, he's one of my most favorite youtubers for programming and is so helpful, he deserves more than that. Like if you agree.
@@sachinsinghal13 yeah
@@sachinsinghal13 thanks! Tell your friends!
is codemy.com free for me?
yh I think so though idk
please give me heart
huh?
I already know how to do this, what is the point of this video?
Do you think I made this video just for you, after reading your mind and knowing what you do and don't already know? LMAO
This was exactly what I was looking for! Thanks again.
Glad I could help!