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.