Skip to content

Commit

Permalink
Update docs to split out sh command in tutorial (wagtail#11311)
Browse files Browse the repository at this point in the history
* Update create-footer_for_all_pages.md
* Update CONTRIBUTORS.md
  • Loading branch information
felp99 committed Dec 6, 2023
1 parent f9c7df4 commit aa11418
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
1 change: 1 addition & 0 deletions CONTRIBUTORS.md
Original file line number Diff line number Diff line change
Expand Up @@ -774,6 +774,7 @@
* Bhuvnesh Sharma
* Ben Morse
* Shlomo Markowitz
* Felipe Lobato

## Translators

Expand Down
6 changes: 5 additions & 1 deletion docs/tutorial/create-footer_for_all_pages.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down

0 comments on commit aa11418

Please sign in to comment.