Skip to content

Commit 2b25678

Browse files
committed
Fixed issue 1. README.txt
1 parent 62cbdab commit 2b25678

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Diff for: README.txt

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
How to use django-sorting
22
----------------------------
33

4-
``django-sorting`` allows for easy sorting, and tables headers (<th>) generation
4+
``django-sorting`` allows for easy sorting, and sorting links generation
55
without modifying your views.
66

77
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.
1111

1212
INSTALLED_APPS = (
1313
# ...
14-
'sorting',
14+
'django_sorting',
1515
)
1616

1717
2. Install the sorting middleware. Your settings file might look something
1818
like::
1919

2020
MIDDLEWARE_CLASSES = (
2121
# ...
22-
'sorting.middleware.SortingMiddleware',
22+
'django_sorting.middleware.SortingMiddleware',
2323
)
2424

2525
3. If it's not already added in your setup, add the request context processor.

0 commit comments

Comments
 (0)