File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 1
1
How to use django-sorting
2
2
----------------------------
3
3
4
- ``django-sorting`` allows for easy sorting, and tables headers (<th>) generation
4
+ ``django-sorting`` allows for easy sorting, and sorting links generation
5
5
without modifying your views.
6
6
7
7
There are really 5 steps to setting it up with your projects.
@@ -11,15 +11,15 @@ There are really 5 steps to setting it up with your projects.
11
11
12
12
INSTALLED_APPS = (
13
13
# ...
14
- 'sorting ',
14
+ 'django_sorting ',
15
15
)
16
16
17
17
2. Install the sorting middleware. Your settings file might look something
18
18
like::
19
19
20
20
MIDDLEWARE_CLASSES = (
21
21
# ...
22
- 'sorting .middleware.SortingMiddleware',
22
+ 'django_sorting .middleware.SortingMiddleware',
23
23
)
24
24
25
25
3. If it's not already added in your setup, add the request context processor.
You can’t perform that action at this time.
0 commit comments