Category: Django

0

Chapter 5: Django 404 (page not found)

What Actually Happens When Django Returns 404? User requests a URL (e.g. /polls/this-question-does-not-exist/) Django checks all patterns in urls.py (project + included apps) No match → Django raises Http404 exception internally Django catches it...

0

Chapter 6: Django Add Test View

Django Add Test View: Many beginners skip testing because “it works on my machine”… until it doesn’t, or until you hand the project to someone else, or until you deploy and everything breaks in...

0

Admin

Admin: Today we’re going to: Activate it completely Make it beautiful and useful for your polls app Customize list views, filters, search, inline editing, actions, etc. Add superuser + understand permissions basics Show real-world...

0

Chapter 1: Django Admin

The Django Admin Many beginners see the admin as “just a toy for learning” — but in real Indian startups, internal tools, content platforms, SaaS products, inventory systems, and even early versions of fairly...

0

Chapter 2: Django Admin – Create User

Django Admin – Create User: How to create, manage, and understand users in the Django admin interface. Many beginners think “creating a user = just createsuperuser command” — but that’s only the beginning. In...

0

Chapter 3: Django Admin – Include Member

Django Admin – Include Member: How to add / include / manage “Members” (team members, staff users, content editors, moderators) in the Django admin. In almost every project that goes beyond a personal hobby...

0

Chapter 6: Django Admin – Add Members

Django Admin – Add Members: How to add new members (staff users, content editors, moderators, support team, etc.) to the Django admin. This is the moment when your app stops being “just my personal...