Archives
Categories
Syndication
Category Archives: python
Django Admin App Views
Following my previous post about configuring Django models, I’m now ready to work on the view. Remember, this is simply within the “Admin” app which ships with Django, and below is a non-exhaustive set of options: ModelAdmin Derived Class Options … Continue reading
Django Models
I’ve been working on a small Django app recently, and started by cleaning up its model definitions. Here’s a quick (but not exhaustive) list of useful configuration options: Model Meta Options db_table = “string” managed = False (whether SQL is … Continue reading