Introduction to the Django admin page When you create a new project using the startproject command, Django automatically generates the admin page for managing models including creating, reading, updating, and deleting which is often known as CRUD. To access the admin page, you navigate to the URL http://127.0.0.1/admin/. It’ll open the login page:Continue Reading

Introduction to Django models In Django, a model is a subclass of the django.db.models.Model class. A model contains one or more fields and methods that manipulate the fields. Essentially, a Django model maps to a single table in the database in which each field of the model represents a column in theContinue Reading