Emmanuel Kipchirchir Langatblog.kipchirchirlangat.com·Apr 17, 2023Implementing an Audit Trail Middleware in Django for Tracking User Actions in DjangoThis is part 2 of the series create and use custom signals in Django. In this article, you will do some updates on the previously written code in the previous article and learn how to wrap the signal in middleware for it to be automatically fired up ...789 readsGetting started with Django. From beginner to expert. Django
Bharat Phalakbharat-phalak-blogs.hashnode.dev·Jan 15, 2023Django Middlewares: Types and Custom MiddlewareMiddleware is a framework of hooks into Django's request/response processing. It is a light plugin system for altering Django’s input or output. Each middleware component is responsible for doing some specific function. You can use middleware if you ...2 likes·100 readsDjango