This commit is contained in:
dpetzel 2017-04-15 22:50:26 +00:00 committed by GitHub
commit 355ba491d0

View File

@ -124,6 +124,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.
---