Enabling Floating Table Headers in Django Admin

To anyone who’s used Django’s amazing admin interface to browse large record lists, you’ve probably felt the frustration of having to scroll up and down the list to remind yourself of a column’s header name. Fortunately, there’s a trivial change you can make to Django’s base admin template to make your life easier. Enter the [...]

Persisting Django’s Test Database

After running Django unittests, it may sometimes be useful to manually inspect the test database after unittests are complete. I was working on a complicated network model, trying to resolve an elusive bug in a unittest, and in this specific instance, I thought running a manually written SQL query would be a bit more helpful [...]