Django – Sending E-mails
In this Django Sending E-mails chapter, we will discuss Django comes with a ready and easy-to-use light engine to send e-mail. Similar to Python you just need an import of…
In this Django Sending E-mails chapter, we will discuss Django comes with a ready and easy-to-use light engine to send e-mail. Similar to Python you just need an import of…
Django Page redirection is needed for many reasons in web application. You might want to redirect a user to another page when a specific action occurs, or basically in case…
A Django models is a class that represents table or collection in our DB, and where every attribute of the class is a field of the table or collection. Models…
Django Template System makes it possible to separate python and HTML, the python goes in views and HTML goes in templates. To link the two, Django relies on the render…
Now that we have a working view as explained in the previous chapter of Django URL Mapping. We want to access that view via a URL. Django has his own…
In a Django Creating views function, or “view” for short, is simply a Python function that takes a web request and returns a web response. This response can be the…
Django Admin Interface provides a ready-to-use user interface for administrative activities. We all know how an admin interface is important for a web project. Django automatically generates admin UI based…
A project is a sum of many applications in Django Apps Life Cycle. Every application has an objective and can be reused into another project, like the contact form on…
Now that we have installed Django for creating a project, let's start using it. In Django, every web app you want to create is called a project; and a project…
Django development environment consists of installing and setting up Python, Django, and a Database System. Since Django deals with web application, it's worth mentioning that you would need a web…