Django Templates Django provides a convenient way to generate dynamic HTML pages by using its template system. A template consists of static…
Django Tutorial
-
-
Django Installation To install Django, first visit to django official site (https://www.djangoproject.com) and download django by clicking on the download section. Here,…
-
Django CMS vs. Wordpress In this article, we will discuss the difference between Django CMS and WordPress. CMS stands for Content Management…
-
Django Cookie A cookie is a small piece of information which is stored in the client browser. It is used to store…
-
Django Middleware In Django, middleware is a lightweight plugin that processes during request and response execution. Middleware is used to perform a…
-
Django Model In Django, a model is a class which is used to contain essential fields and methods. Each model class maps…
-
Create CSV with Django Django uses Python’s built-in CSV library to create Dynamic CSV (Comma Separated Values) file. We can use this…
-
Django Model Form It is a class which is used to create an HTML form by using the Model. It is an…
-
Django Custom User Model Django comes with an excellent built-in User model and authentication support. It is a primary reason most developers…
-
Django MVT The MVT (Model View Template) is a software design pattern. It is a collection of three important components Model View…