Skip to content

Latest commit

 

History

History
20 lines (18 loc) · 848 Bytes

File metadata and controls

20 lines (18 loc) · 848 Bytes

Django-Blog

This is the project I made after watching the YouTube tutorial on Django by Net Ninja.
Reference: https://www.youtube.com/playlist?list=PL4cUxeGkcC9ib4HsrXEYpQnTOTZE1x0uc

What all I learned?

  1. Basic Django terminal commands
  • Create Django Project
  • Create a new app
  • Run the debug server
  • Migrate models
  1. Significance of models, views and urls in MVC (Model View Controller) Framework
  2. Working with HTML templates, extending templates and template tags
  3. Working with Django models, Migrations, Django ORM, Model methods
  4. Working with Django Admin
  5. Working with Named URLs
  6. Working with static files and how to upload media
  7. User Authentication and working with built-in authentication forms
  8. Creating new forms from scratch and posting data to database
  9. Conditional display of HTML content