aboutsummaryrefslogtreecommitdiffstats
path: root/docs/index.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/index.md')
-rw-r--r--docs/index.md13
1 files changed, 1 insertions, 12 deletions
diff --git a/docs/index.md b/docs/index.md
index 5d90e9e5..69d972d0 100644
--- a/docs/index.md
+++ b/docs/index.md
@@ -59,18 +59,7 @@ Add `'rest_framework'` to your `INSTALLED_APPS` setting.
'rest_framework',
)
-### Browseable API requirements
-
-If you're intending to use the browseable API you'll also want to also ensure you include `'django.contrib.staticfiles'` in your `INSTALLED_APPS` setting.
-
- INSTALLED_APPS = (
- ...
- 'django.contrib.staticfiles',
- 'rest_framework',
- )
-
-You'll proabably also want to add REST framework's login and logout views.
-Add the following to your root `urls.py` file.
+If you're intending to use the browseable API you'll probably also want to add REST framework's login and logout views. Add the following to your root `urls.py` file.
urlpatterns = patterns('',
...