Category: Django
Posts of Category: Django
Posts of Category: Django
How to Add HTML Template in Django
**How to Add HTML Template in Django** In last tutorial we have seen, how we can return a HTML code through a string from views.py. It is not a good idea to pass whole HTML code through a string because if we h...Learn MoreDjangoFrameworkDjango Blog Tutorial – Make A Simple Blog
Django Blog Tutorial – Make A Simple Blog In this tutorial, we’ll discuss about how to make a simple Blog in Django 2. Our blog will have TITLE, PICTURE, DESCRIPTION (Body), DATE. There will be two pages,...Learn MoreDjangoFrameworkDjango Models
Django Models In this tutorial, we’re going to learn about models in django. Models are connected to our database. We can also say that a model contains the fields and behaviors of the data that we want to stor...Learn MoreDjangoFrameworkIntroduction to Django
**Introduction to Django** Hello everyone, from today we’re going to start a new tutorial series on Django framework. In this tutorial we will cover basic introduction of Django. Before start to learn, lets hav...Learn MoreDjangoFrameworkHow to Fetch Data from Template Forms to Views in Django
How to Fetch Data from Template Forms to Views in Django In this tutorial, we’ll see how we can fetch text/data from HTML forms in our templates to views.py to process it and then send that data to another html...Learn MoreDjangoFrameworkHow to Install Django on Windows/Linux/Mac
**How to Install Django on Windows/Linux/Mac** In this tutorial, we’re going to see how we can install django on windows, linux or mac platform. First of all, open https://www.djangoproject.com/. It is the offi...Learn MoreDjangoLinuxWindowsMacFrameworkBlog5 Best Django Books for Beginners
**5 Best Django Books for Beginners** Here you will find list of best django books for beginners to learn. If you’re eager to learn Django as it is so popular nowadays for its simplicity, then you can follow ou...Learn MoreDjangoBooksFrameworkDevDjango Custom Webpage
**Django Custom Webpage** In this tutorial, we’re going to create our first custom webpage in django. The main goal of this article for you to understand the whole flow of information in django website like if ...Learn MoreDjangoFrameworkDjango PostgreSQL Installation and Setup
**Django PostgreSQL Installation and Setup** We’ll know that SQLite is very powerful, embedded relational database management system and it offers a really amazing set of tools to manage approximately all sorts...Learn MoreDjangoPostgreSQLFrameworkDjango – Getting Data from PostgreSQL and Showing it to Template
Django – Getting Data from PostgreSQL and Showing it to Template In this Django tutorial, we’ll see how we can get the data stored in the database and display it to the template. Prerequisites Have a look on th...Learn MoreDjangoPostgreSQLFrameworkCreating First Django Project
**Creating First Django Project** Alright fellows, so in this tutorial we’re going to create our very first django project. Here I am assuming that you all have installed Django 2 in your system. Django has a g...Learn MoreDjangoFrameworkDjango Project Tour
**Django Project Tour** In this tutorial, we’re going to take a look on each file that exists in our django project folder. Let’s say, we’ve created a project named as my_website on our desktop. Now open that f...Learn MoreDjangoFramework