Kim Majali wrote on 26/05/2022
1.type python manage.py startapp dialogue dialogue is an example of app name
Read moreKim Majali wrote on 26/05/2022
Kim Majali wrote on 26/05/2022
This app allows editing the contents of the static pages:
1.Text-only contents, to edit text on critical pages like the index page
Read moreKim Majali wrote on 26/05/2022
1.Create contact_us app by tiping in our terminal :
python manage.py startapp contact_us
Read moreKim Majali wrote on 26/05/2022
1.Create a new app
python manage.py startapp pages
2.Add this app to INSTALLED_APPS list in your main settings.py file
INSTALLED_APPS = [
...
'pages.apps.PagesConfig',
...
]
Read moreTopics: Apps