August 2016
Beginner to intermediate
717 pages
15h 24m
English
We will not program our application in the Work_manager folder because we want to create our own Task_manager application.
For this, run the following command using the manage.py file created by the startproject command You must run the following command in the Work_manager folder which contains manage.py file:
Manage.py startapp TasksManager
This command creates a TasksManager folder in the folder of our project. This folder contains five files:
__ init__.py file defines a package. Python needs it to differentiate between the standard folders and the packages.admin.py file is not useful at this moment. It contains the models that need to be incorporated in the administration module.models.py file contains all ...Read now
Unlock full access