aboutsummaryrefslogtreecommitdiffstats
path: root/docs/api-guide
diff options
context:
space:
mode:
authorJacek Bzdak2013-10-22 13:15:48 +0200
committerJacek Bzdak2013-10-22 13:15:48 +0200
commitcc9c7cd8a479b7fa76a66b8669e4a62fd78be867 (patch)
tree4e70790e403b21afc7dcd89db763a2ddb4e69d10 /docs/api-guide
parent8fffc346c1c4fe6e634ce60bd0371217b07ecf5c (diff)
downloaddjango-rest-framework-cc9c7cd8a479b7fa76a66b8669e4a62fd78be867.tar.bz2
Small documentation fix
Diffstat (limited to 'docs/api-guide')
-rw-r--r--docs/api-guide/filtering.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/api-guide/filtering.md b/docs/api-guide/filtering.md
index bcb0bb41..a0132ffc 100644
--- a/docs/api-guide/filtering.md
+++ b/docs/api-guide/filtering.md
@@ -181,8 +181,6 @@ Which will allow you to make requests such as:
http://example.com/api/products?category=clothing&max_price=10.00
-For more details on using filter sets see the [django-filter documentation][django-filter-docs].
-
You can also span relationships using `django-filter`, let's assume that each
product has foreign key to `Manufacturer` model, so we create filter that
filters using `Manufacturer` name. For example:
@@ -220,6 +218,8 @@ be undesired, but you can use:
And now you can execute:
http://example.com/api/products?manufacturer=foo
+
+For more details on using filter sets see the [django-filter documentation][django-filter-docs].
---