Category: Django Tutorials
The view component of the model view controller (MVC) architecture is responsible for presenting data to users for consumption and viewing. Views are Python functions or classes that accept a web request and generate...
The third and most significant aspect of Django’s MVT Structure is templates. In Django, a template is a .html file that is prepared in HTML, CSS, and Javascript. The Django framework efficiently manages and...
Today, we’ll look at a popular framework that many businesses use to build online apps. In this Django tutorial, we’ll go over the basics of the framework. This Django course is designed for web...
In this job portal project, the applicants requiring a job can connect to the companies. It is a great platform for both the applicants and also for all the companies. About the Job Portal...
In this tutorial, we will learn how to create, install and deploy our first Django app effortlessly. We will be working with some of the app and project files. We will learn the basics...
We learned about Django Models in the last tutorial, and now we’ll go through how to connect a database to a Django project. We want some form of input from our end-users or consumers...
In our previous article, we covered Django Cookies. Let’s take it a step further and look at Session in Django. Let’s take a quick look at the concept of cookies and look at some...
Django is a framework that allows us to interact with cookies. Cookies give you the possibility of storing and retrieving data that is saved in sessions. These cookies have an expiration date and are...
We’ll learn about Django URL mapping and how to connect the URL request to the corresponding view in this tutorial. Since Django is a web application framework, it receives user requests and answers them...
In our previous article on Django’s MVT architecture, we have done an overview of what Django models are. Till now we know that models are useful for storing and maintaining data in the database....