Thank you so much, Tim, the way you explain the code and demonstrate it, makes it very simple and understandable for a beginner like me. you have become my number 1 online teacher so far
actually your tutorials make me so happy as it feels so realistic and just represent my pain while learning specially that i'm so beginner and errors that face you and the way that you deal with it is just similar to us.. not like these professionals who made every single line looks so easy and they just want us to type faster and follow them along the tutorial I don't mean that you're not professional but just seeing you facing the same issues that we pass through is very satisfying
very nicely explained....by the way, when you make mistakes and corrects it - it is totally human. Actually, many people may will like it that way (yours truly included) because that gives a real touch to your tutorial....keep it up...
I like that you explain things just enough for not making mistakes. Not like "do like I do", but "you should name this folder the same as your app, it's important for django to work"
at 8:57 my server is running well but it isn't displaying the base.html contents like the output that you've got, but instead i'm getting the output page of - the install worked successfully
Yes!! The ID auto increment does not reset back to 1 so even though he deleted items and then added two other records Id 1 will not be used again it will start from id 2 and forward. There is a way I believe to reset the Id but usually not something you would want to do with a database.
at 22:44 When I enter ls = ToDoList.objects.get(id=2) it comes back saying that ToDoList is not defined, but I do have an item from that list displayed on 127.0.0.1:8000/1. What can I do? Does my list have a different name somehow? Is there a way to check it?
Way to check it in your shell, check how many todolist are present, by typing from main.models import ToDoList ls = ToDoList.objects.all() ls Hopefully your queryset will have only one item, since you are getting that ToDoList at id=2 does not exist else that is multiple list exist in your ToDoList Model, define another function which will return the id for particular list def get_id(self): return str(self.id) By using this function you can get the appropriate id Hope this helps !!
@@shyren_more I typed this in, but so far the shell prompt does not recognize it when I try to use it. I have two items in the ToDoList query results when I should only have one, and this prevents me from proceeding further with the lessons. If the DB were set up in MySQL, I could go in and correct the list; but being in SQLite, the DB is not so easily directly manipulated.
omg i just saw ur "text-based tutorial" man really ty. I followed so many channel udemy courses etc but u are amazing. Ty for everything. Hi from Turkey and srry for my bad english btw. :)
Hey, I am a beginner aspiring programmer. May I ask on why did we say complete=False (capital F coz f doesn't work) in this First Item at 23:06? Thank you.
WHy is the parameter for the functions like index and home is "response". Is it not a request, or something that goes IN the function (like a question), not OUT like a response?
In my view file, in the index fonction, it doesn't recognize th id parameters. There's also another problem, the id of my entries in my database begins at 2 which is strange
sup Tim. Im getting a postitional argument follows keyword argument when i try and create a new item in the item sets. I ONLY get this error when I add the complete == False. Can you assist please?
For some reason it comes up as an error, saying that "list() missing 1 required positional argument: 'id'" in the index function(I named is list instead of index), can someone please help me :(
Yo, I'm learning alot about Django from your vids. I was just wondering if you mind sharing any references of how you learned Django, like books, websites, whatever. I'm going to stick through your series, I'm just wondering how you learned.
Hi Tim, assuming I have multiple apps. When creating a templates folder to store my base.html is it okay to store this folder within an application and inherit across other applications or should I add it to BASE_DIR and have its hierarchy be equal to that of the project folder. Thank you. Your TH-cam channel is great btw.
It is very discouraging that when one makes a single mistake, one cannot go back and correct it but must start the series from scratch to rebuild the entire database in order to go to the next lesson. There seems to be no way to download a correct database to start the next lesson.
For anyone coming to this video directly, not sure if it was covered in the lessons prior, but you may need to modify your settings.py file. In the INSTALLED_APPS array, add 'main', to the end of the array so it searches in the right place. I was having a TemplateNotFound error before I did that.
I got hooked on your videos so started binge watching them. I have now unintentionally learnt how to code a website. You're awesome
Thank you so much, Tim, the way you explain the code and demonstrate it, makes it very simple and understandable for a beginner like me. you have become my number 1 online teacher so far
actually your tutorials make me so happy as it feels so realistic and just represent my pain while learning specially that i'm so beginner and errors that face you and the way that you deal with it is just similar to us.. not like these professionals who made every single line looks so easy and they just want us to type faster and follow them along the tutorial
I don't mean that you're not professional but just seeing you facing the same issues that we pass through is very satisfying
Yes! full website tutorial till deployment :), my boy actually answer the comments
thank you for all your videos , they are always great !
very nicely explained....by the way, when you make mistakes and corrects it - it is totally human. Actually, many people may will like it that way (yours truly included) because that gives a real touch to your tutorial....keep it up...
I definitely want to look at real debugging.
Eagerly waiting for future videos of django .Nice explanation 👍👍
Love from India
Well thank you
This guy is good
@@RonnieLutaro he is not good , he is a god
I like that you explain things just enough for not making mistakes. Not like "do like I do", but "you should name this folder the same as your app, it's important for django to work"
at 8:57 my server is running well but it isn't displaying the base.html contents like the output that you've got, but instead i'm getting the output page of - the install worked successfully
you just need to add 'main' to installedapps[ ] in settings so html could render
"Awesome" You're awesome Tim! Amazingly well structured and explained!
The error that you got in minute 9:35 is because in the past video you deleted the record with Id 1
Yes!! The ID auto increment does not reset back to 1 so even though he deleted items and then added two other records Id 1 will not be used again it will start from id 2 and forward. There is a way I believe to reset the Id but usually not something you would want to do with a database.
@@mejiab19 hey bro just lettin you know you out here savin souls
Tim is a LEGEND! thanks bro, i really appreciate ur hard work
at 22:44 When I enter ls = ToDoList.objects.get(id=2) it comes back saying that ToDoList is not defined, but I do have an item from that list displayed on 127.0.0.1:8000/1. What can I do? Does my list have a different name somehow? Is there a way to check it?
Hello, I have the same problem. Do you have a solution for it?
Way to check it
in your shell, check how many todolist are present, by typing
from main.models import ToDoList
ls = ToDoList.objects.all()
ls
Hopefully your queryset will have only one item, since you are getting that ToDoList at id=2 does not exist
else that is multiple list exist
in your ToDoList Model, define another function which will return the id for particular list
def get_id(self):
return str(self.id)
By using this function you can get the appropriate id
Hope this helps !!
@@shyren_more I typed this in, but so far the shell prompt does not recognize it when I try to use it. I have two items in the ToDoList query results when I should only have one, and this prevents me from proceeding further with the lessons. If the DB were set up in MySQL, I could go in and correct the list; but being in SQLite, the DB is not so easily directly manipulated.
@@jadrianverkouteren3799 no clue bro, it's been long since I have used Django/Python :)
Wow Tim u r amazing, learning a lot from you
omg i just saw ur "text-based tutorial" man really ty. I followed so many channel udemy courses etc but u are amazing. Ty for everything. Hi from Turkey and srry for my bad english btw. :)
Hey, I am a beginner aspiring programmer. May I ask on why did we say complete=False (capital F coz f doesn't work) in this First Item at 23:06? Thank you.
In Python, that's how you define a false boolean value with a capital F, otherwise, you'll have an error.
tim bro you are awsomeee
WHy is the parameter for the functions like index and home is "response". Is it not a request, or something that goes IN the function (like a question), not OUT like a response?
In my view file, in the index fonction, it doesn't recognize th id parameters. There's also another problem, the id of my entries in my database begins at 2 which is strange
I have the same problem, so can someone help us please?
Cant wait to catch up! Thank you for this, really helping me elevate
i noticed we can also add item to the to do list through admin dashboard, that is so cool, thanks for the awesome tutorial!!
sup Tim. Im getting a postitional argument follows keyword argument when i try and create a new item in the item sets. I ONLY get this error when I add the complete == False. Can you assist please?
For some reason it comes up as an error, saying that "list() missing 1 required positional argument: 'id'" in the index function(I named is list instead of index), can someone please help me :(
Great tutorials
Yo, I'm learning alot about Django from your vids. I was just wondering if you mind sharing any references of how you learned Django, like books, websites, whatever.
I'm going to stick through your series, I'm just wondering how you learned.
Great video looking forward for the next ones 👍
Thank you :)
You are awsome mannnnnnn
The page below "Enroll in THe Fundamentals..." doesn't work
I love your content Tim! Keep going you're helping a lot i really thank you !
actually, it's: "I love your {% block content %}{endblock} Tim!"... :) :D B)
Very good video
Greetings
I ask for your help I have a problem here can I share my problem?
Can I name the block content and endblock as anything i want?
Thank you for this tutorial bro !
Yeah please, it would be awesome to learn Django down to deployment!!!
Hello, can somebody explain what means "item_set"?? is this some kind function or what ?
Hi Tim, do we have the github link for the code in this tutorial?
can't we add items and todolist from django admin page
Awesome!
Wooo What just happened in my life! cuteee 😄😄
This is amazing content!
Can anyone help me about how can I grab next next element of for loop in the template?
why I keep havinf the error someone advice me plz
OperationalError at /3
no such table: main_todolist
because you need to run makemigrations and migrate on your database.....
That was cool, indeed! Took me 2 days, but was very interesting
This tutorial is super awesome! Thanks so much for doing it!
Cleary, thank you for your teaching.
Hi Tim, assuming I have multiple apps. When creating a templates folder to store my base.html is it okay to store this folder within an application and inherit across other applications or should I add it to BASE_DIR and have its hierarchy be equal to that of the project folder. Thank you. Your TH-cam channel is great btw.
thank you sir :D
Very helpful tutorial 👍
Hi Tim! Very nice explanations, I have a question, could you make a video of how to use graphs from matplotlib in Django for a site? Thanks
No he won't
thanks for sharing. you are best!
keep the good work :) saludos de chile y muchas gracias !
much thx !
You could insert items from admin.
It is very discouraging that when one makes a single mistake, one cannot go back and correct it but must start the series from scratch to rebuild the entire database in order to go to the next lesson. There seems to be no way to download a correct database to start the next lesson.
thank you for this tutorials
I get a TemplateDoesNotExist error, can anyone help please 😭
For anyone coming to this video directly, not sure if it was covered in the lessons prior, but you may need to modify your settings.py file. In the INSTALLED_APPS array, add 'main', to the end of the array so it searches in the right place. I was having a TemplateNotFound error before I did that.
clarify please, i'm facing the same issue
@@Linuxovert Find INSTALLED_APPS and just add a line to it that says 'main',
adding 'main.apps.MainConfig' at the end of the INSTALLED_APPS also works which is what Tim added in previous videos
thank you you helped me
We don't need another directory named as the app name in the template ('main' as in this tutorial). Just template directory will do.
Tim I need your help.
Tim make a Odoo tutorial it's just like Django
thanks.
20:42
SPEECHLESS BROTHA !
Dude this is such a good explanation, is there a place where I can send you a shekel or 2, I get paid 2moro.
I have a Patreon! Or u can always send stuff through PayPal to my email which can be found in the description and the about page of my channel
How do u make an online 2 player gun game?
The 3 people who voted down, accidently deleted their trash bin.
Comment.
:)
Plz leave a tutorial on this!
i cant parse my block from home to base.html, helpppp
This is amazing content!