From aa11418d23fa09da4417851c5eb7ece969cef6f3 Mon Sep 17 00:00:00 2001 From: Felipe Lobato <76445505+felp99@users.noreply.github.com> Date: Wed, 6 Dec 2023 21:57:08 +0100 Subject: [PATCH] Update docs to split out sh command in tutorial (#11311) * Update create-footer_for_all_pages.md * Update CONTRIBUTORS.md --- CONTRIBUTORS.md | 1 + docs/tutorial/create-footer_for_all_pages.md | 6 +++++- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index a9ab719dc36a..e0e6b6766cf2 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -774,6 +774,7 @@ * Bhuvnesh Sharma * Ben Morse * Shlomo Markowitz +* Felipe Lobato ## Translators diff --git a/docs/tutorial/create-footer_for_all_pages.md b/docs/tutorial/create-footer_for_all_pages.md index f914518cc875..ac09344fdc9b 100644 --- a/docs/tutorial/create-footer_for_all_pages.md +++ b/docs/tutorial/create-footer_for_all_pages.md @@ -8,7 +8,11 @@ The next step is to create a footer for all pages of your portfolio site. You ca ## Add a base app -Now, create a general-purpose app named `base`. To generate the `base` app, run the command, `python manage.py startapp base`. +Now, create a general-purpose app named `base`. To generate the `base` app, run the command: + +```sh +python manage.py startapp base +``` After generating the `base` app, you must install it on your site. In your `mysite/settings/base.py` file, add `"base"` to the `INSTALLED_APPS` list.