diff --git a/docs/ref/contrib/csrf.txt b/docs/ref/contrib/csrf.txt
index 50e15d7..a932a0e 100644
|
a
|
b
|
To enable CSRF protection for your views, follow these steps:
|
| 31 | 31 | 1. Add the middleware |
| 32 | 32 | ``'django.middleware.csrf.CsrfViewMiddleware'`` to your list of |
| 33 | 33 | middleware classes, :setting:`MIDDLEWARE_CLASSES`. (It should come |
| 34 | | and before any view middleware that assume that CSRF attacks have |
| | 34 | before any view middleware that assume that CSRF attacks have |
| 35 | 35 | been dealt with.) |
| 36 | 36 | |
| 37 | 37 | Alternatively, you can use the decorator |