How to Turn Django Admin Into a Lightweight Dashboard

source code The complete source code for this article can be found in this gist. Django Admin is a powerful tool for managing data in your app. However, it was not designed with summary tables and charts in mind. Luckily, the developers of Django Admin made it easy for us to cust … | Continue reading


@hakibenita.com | 7 years ago

How to Test Django Signals Like a Pro

Django Signals are extremely useful for decoupling modules. They allow a low-level Django app to send events for other apps to handle without creating a direct dependency. The Use Case Let's say you have a payment module with a charge function. (I write a lot about payments, so I … | Continue reading


@hakibenita.com | 7 years ago