If you want to learn basics of django in just a week, here are some steps to help you: (you must have a good knowledge in python)
- learn how to install django from here.
 - know how to create django projects 
django-admin startproject my_project. - learn the structure of django project (check it here), and the use of manage.py file.
 - learn how to route urls
 - learn how to render templates
 - learn about models
 - learn how to add static files (css, images, js, ...ect) to the project
 - learn how to deal with admin page ( it's already setup for you just know how to create a superuser; and how to add contents (models) to it )
 - learn about sessions (cookies)
 
I just learned it in lees than a week.
Here is a youtube channel where I learned from Corey Schafer
              
    
Top comments (1)
I'm just getting to learning Django. This was really useful. Thankyou