March 2020
Intermediate to advanced
608 pages
17h 17m
English
Chapter 1, Getting Started with Django 3.0, illustrates the fundamental setup and configuration steps necessary for any Django project. We cover virtual environments, Docker, and project settings across environments and databases.
Chapter 2, Models and Database Structure, explains how you can write reusable code for use in the construction of your models. The first things to define with new apps are the data models, which form the backbone of any project. You will learn how to save multilingual data in the database. Also, you will learn how to manage database schema changes and data manipulations using Django migrations.
Chapter 3, Forms and Views, shows ways to construct views and forms for data display and editing. ...