Get Started with Django, Python’s most popular web framework! Learn how to build amazing websites with Django in this 100% free and project based tutorial!

Join our bestselling Djangocourse: https://acad.link/django
Learn Python from Scratch: https://acad.link/python-blockchain
Join our Academind Community on Discord: https://academind.com/community
CSS files used in this tutorial: https://github.com/academind/django-practical-guide-course-code/tree/summary-zz-extra-files/css-files
Finished code: https://github.com/academind/django-practical-guide-course-code/tree/summary-14-finished

Check out all our other courses: https://academind.com/courses

———-
Timestamps:
Introduction 00:00
What & Why? 00:30
Setup & Analyzing the Project Folder 06:30
Working with Apps 13:34
URLs & Views 18:23
Getting Started with Templates 30:42
Static Files & First Steps with the Django Template Language 37:36
Key Django Template Language Features & Tags 46:01
Using What we Learned 55:40
Adding a Detail Page 01:04:33
Dynamic Paths 01:15:17
Dynamic URLs in Templates 01:23:30
Using Template Inheritance 01:30:19
Includes 01:43:03
What is Data? 01:48:03
Getting Started with Models 01:51:46
Using the Admin Panel 02:02:58
Querying Data 02:07:39
Adding Image Upload 02:15:30
Serving & Displaying Images 02:27:08
Configuring the Admin Area 02:34:09
Setting one-to-many Relations 02:42:35
many-to-many Relations 02:52:27
More Meetup Fields & Outputting Related Data 03:02:12
Creating a Modelform 03:09:50
Handling Form Submission 03:18:11
More on Form Submission & Validation 03:28:22
From Modelform to Form 03:39:09
Polishing Organizer Email 03:48:25
Optimizing URLs 03:56:51
Wrap Up 04:00:51
———-

• Go to https://www.academind.com and subscribe to our newsletter to stay updated and to get exclusive content & discounts
• Follow @maxedapps and @academind_real on Twitter
• Follow @academind_real on Instagram: https://www.instagram.com/academind_real
• Join our Facebook community on https://www.facebook.com/academindchannel/

See you in the videos!

———-

Academind is your source for online education in the areas of web development, frontend web development, backend web development, programming, coding and data science! No matter if you are looking for a tutorial, a course, a crash course, an introduction, an online tutorial or any related video, we try our best to offer you the content you are looking for. Our topics include Angular, React, Vue, Html, CSS, JavaScript, TypeScript, Redux, Nuxt.js, RxJs, Bootstrap, Laravel, Node.js, Progressive Web Apps (PWA), Ionic, React Native, Regular Expressions (RegEx), Stencil, Power BI, Amazon Web Services (AWS), Firebase or other topics, make sure to have a look at this channel or at academind.com to find the learning resource of your choice!

source

32 Comments

  1. 2:27:38 if any of you have a problem (in settings.py) with:
    “`
    MEDIA_ROOT = BASE_DIR / 'uploads'
    MEDIA_URL = '/files/'
    “`
    …throwing an error related to str, then try this:
    “`
    MEDIA_ROOT = os.path.join(BASE_DIR, 'uploads/')
    MEDIA_URL = '/files/'
    “`

  2. Thanks a lot for the video! it was totally informative. I just have one issue which looks really weird. When registering one participant to a specific meeting, the participant is automatically registered to all meetups (not just the one registering for). anyone had that issue ? thanks in advance.

  3. Max try to update your udemy course to cover how to create rest apis with django. Make the course as meany features as you did inside your Nodejs course which cover all aspects of working with server side i-e rest apis, graphql api, sending emails, etc. It would be gerat fi u coudl do that

  4. Thanks for your efforts to make this video and i am planning to save it but i have two questions please: I am currently working to make good background in Python as i am still fresh beginner. Do you recommend me to learn Python first and then start in learning Django ? Second what is the best program to code or write codings in Django ? I am using pycharm to make codings in Python. Thanks in advanced

  5. when I use Django in visual studio code , I can't use html auto-filling ability. even html files' logo changes when I use Django. it only suggests Django syntax. can you help me with that please?

  6. Academind – I want to build something like Quora but one were you can filter accounts by something people have in common on their profile and ask questions to selected people for their comments. Am busy learning Python and then Django. Will this do?

  7. Good day Mr. max, I follow your step from the beginning to the end but the CSS file I added is not taking effect on my html file, so also interpolation is not working as well.
    I need your explanation on this.
    thanks a lot.

Leave A Reply

Please enter your comment!
Please enter your name here