diff --git a/docs/tutorial/quickstart.md b/docs/tutorial/quickstart.md index e8a4c8ef6..64a3894b6 100644 --- a/docs/tutorial/quickstart.md +++ b/docs/tutorial/quickstart.md @@ -123,6 +123,16 @@ We'd also like to set a few global settings. We'd like to turn on pagination, a ], 'PAGE_SIZE': 10 } + +In order for the browsable API to properly render you should also add the +following information into `tutorial/settings.py` + + INSTALLED_APPS = ( + ... + 'django.contrib.staticfiles', + ) + + STATIC_URL = '/static/' Okay, we're done.