Tagged in

Python

Django Musings
Django Musings
My personal notes and thoughts on Django Web Development
More information
Followers
253
More, on Medium

Customizing the Django Admin site

Django’s official doc here

Let’s start by saying that Django’s admin site is spectacular. It can literally save you months of work, but having said that, one thing that one needs to understand is that Django’s admin site is only ok as an…


The Multiple Settings Files Pattern

I read this first in Two Scoops of Django a while back.

When we start working with Django we learn fast that we’ll need to use some settings values to run the app in development mode, and some other setting values for when we deploy the app…