Snehangshu Bhattacharyablogs.snehangshu.dev·Nov 12, 2024FeaturedA Step-by-Step Guide to Advanced Task Scheduling using Celery Beat and DjangoIn my asynchronous Python blog, I explored multitasking, distributed computing, and related best practices. But sometimes we need to run programs in a periodic manner, where running tasks in parallel does not matter. In many applications, periodic ta...30 likes·268 readscelery
Mirkenan Kazımzadekenan7.com·Oct 24, 2024Achieving Symmetrical ManyToMany Filtering in Django AdminI recently tackled an interesting challenge that I think could benefit others in the community. The problem? Creating a symmetrical ManyToMany filter widget in the Django admin dashboard. You know, the kind where you can filter and select related obj...188 readsTechDjango
Kevin Naidookevincoder.co.za·Mar 13, 2024Django admin: How to add a custom page?Django admin is a powerful tool to build admin panels rapidly. With just a few lines of code, you can have a fully functional admin panel in seconds. The problem though is customization, one of the most common customizations you'll do often is add a ...2 likes·1.0K readsDjango
Shubham Yadavcomputergeeks.hashnode.dev·Feb 22, 2023How to add a custom widget to django-jet admin panel with custom dashboard?here's a step-by-step tutorial for adding a custom widget named TotalOrders to the Django-jet admin panel with a custom dashboard: First, make sure that you have installed the Django-jet library by running pip install django-jet. Next, create a Dja...231 readsDjango Web FrameworkDjango