For every page in your page structure, you have to choose a template from the list of templates that are defined in the settings. In this recipe, we will look at the minimum requirements for the templates.
Creating templates for Django CMS
Getting ready
If you want to start a new Django CMS project, execute the following commands in a virtual environment, and answer all of the prompted questions:
(myproject_env)$ pip3 install djangocms-installer (myproject_env)$ djangocms -p project/myproject myproject
Here, project/myproject is the path where the project will be created, and myproject is the project name.
On the other hand, if you want to integrate Django CMS into an existing project, check the official documentation at http...