Django Admin Interface Django provides a built-in admin module which can be used to perform CRUD operations on the models. It reads…
Django Tutorial
-
-
Django Form Validation Django provides built-in methods to validate form data automatically. Django forms submit only if it contains CSRF tokens. It…
-
Django Session A session is a mechanism to store information on the server side during the interaction with the web application. In…
-
Django with Bootstrap Bootstrap is a framework which is used to create user interface in web applications. It provides css, js and…
-
Django Shortcuts Django shortcuts module is a collection of helper functions that are generally used in view function/classes. There are many shortcuts…
-
Django Configuration with Apache Web Server Django uses its built-in development server to run the web application. To start this server, we…
-
Django Forms Django provides a Form class which is used to create HTML forms. It describes a form and how it works…
-
Django Static Files Handling In a web application, apart from business logic and data handling, we also need to handle and manage…
-
Django App In the previous topics, we have seen a procedure to create a Django project. Now, in this topic, we will…
-
Django Image Upload | How to Upload Image with Django Image uploading is one of the main features of any modern web-applications.…