One of the quickest wins for improving the speed of a Django app is to fix the “oops didn’t mean to” inefficient database reads that… (more…)
Read more »
In this tutorial, you'll learn how to customize Django's admin with Python. You'll use AdminModel objects to add display columns, calculate values, link to referring objects, and search and filter results. You'll also use template overriding to gain full ... (more…)
Read more »
When your Django application sends back a response with your user interface, templates are the tool you'll use to produce that user interface. This article looks at what templates are and how to use them. (more…)
Read more »
Our mission and ambition is to challenge the status quo, by doing things differently we nurture our love for craft and technology allowing us to create the unexpected. (more…)
Read more »
Django ORM performs a lot of magic that is lost outside of a typical Django view request/response cycle. This decorator can help cleanup your persistent connections. (more…)
Read more »