Tag Archives: learn python 3

How to create admin panel in django 3

Hello World, Welcome to projectsplaza.com. Today I am going to create a tutorial about the Django admin panel. In this tutorial, we will learn how to create an admin panel in Django 3. I will extend my previous tutorial in which we have learned how we can submit form data in the SQLite database with jquery ajax in Django 3.

Django comes with a powerful admin panel. We just need to configure this in our project. There are lots of features in this admin panel but not any then you can customize it at any level.

Continue reading

How to create static application with django?

Hello World, Welcome to projectsplaza.com. This is the third tutorial of the series “learn Django from scratch with example“. In this tutorial, we will create a static blog application with Django. We will learn the following things in this tutorial.

  • How to create view templates in Django?
  • How to add static files in Django templates?
  • How to extend a template in Django?
  • How to share common data in all views?

Continue reading

how-to-create-project-and-application-in-django

How to create project and application in Django?

Hello World, Welcome to this website. This is the second tutorial of the series “learn Django from scratch with example“. I have divided this tutorial into the following parts.

Continue reading

what-is-django-and-how-to-install-it

What is Django and how to install Django?

Hello World, Welcome to projectsplaza.com. This is the first tutorial of “learn Django from scratch with example“. In this tutorial, we will discuss “what is Django and how to install Django“.


What is Django?

Django is an open-source web application framework, built with python. A web framework is set of components which help to create web application easier and faster. Django follows the model-template-view architectural pattern. It is maintained by the Django Foundation. The main goal of Django is to create a database-driven and complex website with ease.

Continue reading

learn-django-from-scratch-with-example

Learn django from scratch with example

Hello World, Welcome to projectsplaza.com. Today I am going to start a tutorial series of Django, here you will learn Django from scratch with an example project. In this series, We will create a blog application with Django and bootstrap 4. This is a very simple blog application. In this application, the following features will be available.

  • Home page with the latest post
  • Posts according to category
  • Post detail page
  • Add comments on the post

Continue reading