From e786e4c4a142ed42b05b3e4e82ac13c41f898c36 Mon Sep 17 00:00:00 2001 From: Daniel Hahler Date: Mon, 23 Nov 2015 13:50:44 +0100 Subject: [PATCH] doc: clarify that crispy-forms needs to be in INSTALLED_APPS --- docs/api-guide/filtering.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/api-guide/filtering.md b/docs/api-guide/filtering.md index 6bdbdfedb..9e5f605ff 100644 --- a/docs/api-guide/filtering.md +++ b/docs/api-guide/filtering.md @@ -145,11 +145,11 @@ To use REST framework's `DjangoFilterBackend`, first install `django-filter`. pip install django-filter -If you are using the browsable API or admin API you may also want to install `crispy-forms`, which will enhance the presentation of the filter forms in HTML views, by allowing them to render Bootstrap 3 HTML. +If you are using the browsable API or admin API you may also want to install `django-crispy-forms`, which will enhance the presentation of the filter forms in HTML views, by allowing them to render Bootstrap 3 HTML. pip install django-crispy-forms -With crispy forms installed, the browsable API will present a filtering control for `DjangoFilterBackend`, like so: +With crispy forms installed and added to Django's `INSTALLED_APPS`, the browsable API will present a filtering control for `DjangoFilterBackend`, like so: ![Django Filter](../img/django-filter.png)