Tag: Django Signals
Django Signals are the notifier which wakes up when the event happens on models and HTTP request. The Django Signals is a procedure to permit decoupled applications to get informed when certain occasions happen.
Django Slug Tutorial: Generating Unique URLs for Your Web App
Last updated on 5th March 2023 by H Sayyed | Category: Django Tutorial
When building a web application, it is essential to create unique URLs for each page to ensure that they can be easily accessed and shared by users. In Django, this can be achieved by using a slug field to generate unique URLs for each item in a database. A slug is a URL-friendly version of […]

Django Signals tutorial-How to Use and Create Django Signals
Last updated on 27th November 2021 by H Sayyed | Category: Django Tutorial
Django signals, Django signals tutorial, Django signals example. Django Signals helps to allow decoupled applications to get notified when actions or events occur. We can think of Django Signals as triggers. Django Signals are useful when we need to invoke a piece of code at certain events. The benefit of these signals is at the […]