Update docs to split out sh command in tutorial (#11311)

* Update create-footer_for_all_pages.md
* Update CONTRIBUTORS.md
pull/11296/head
Felipe Lobato 2023-12-06 21:57:08 +01:00 zatwierdzone przez GitHub
rodzic f9c7df49c8
commit aa11418d23
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
2 zmienionych plików z 6 dodań i 1 usunięć

Wyświetl plik

@ -774,6 +774,7 @@
* Bhuvnesh Sharma
* Ben Morse
* Shlomo Markowitz
* Felipe Lobato
## Translators

Wyświetl plik

@ -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.