Django Tutorial - Introduction to Django Messaging and Notification #8

Опубликовано: 13 Октябрь 2024
на канале: Python Lessons
3,833
63

Welcome everyone to part 8 of the web development in Python with Django. This part will cover the Django messaging tool that will throw a pop-up for a user about what's going on with their operations on the website!

But, before jumping into the above-covered stuff, those familiar with Django may notice that our crispy font was not operating correctly in the previous tutorial. I forgot to add a few more essential lines into the code to make it work.

The Django web framework has a built-in messaging system that allows us to store messages that we can display on every page we want. If there are any messages, we can display them to the user. These messages appear as pop pups in the desired page place, and we can style them however we want. I can bet you saw them on other pages, but probably you never thought about what they are; you thought that's a simple success or error notification.

Text version tutorial: https://pylessons.com/django-messaging
GitHub code: https://github.com/pythonlessons/Djan...

#django #programming #educational #technology #web #website