Django – Cookies Handling
In this Django Cookies handling chapter, we will discuss about Sometimes you might want to store some data on a per-site-visitor basis as per the requirements of your web application.…
In this Django Cookies handling chapter, we will discuss about Sometimes you might want to store some data on a per-site-visitor basis as per the requirements of your web application.…
So far, in our examples of Django Apache Setup, we have used the Django dev web server. But this server is just for testing and is not fit for production…
It is generally useful for a web app to be able to Django file uploading (profile picture, songs, pdf, words.....). Let's discuss how to upload files in this chapter. Uploading…
Creating forms in Django, is really similar to creating a model in Django Form Processing. Here again, we just need to inherit from Django class and the class attributes will…
In some cases, writing Django Generic views, as we have seen earlier is really heavy. Imagine you need a static page or a listing page. Django offers an easy way…
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…