diff --git a/docs/ref/contrib/csrf.txt b/docs/ref/contrib/csrf.txt index feeba2280c..006d63b7a3 100644 --- a/docs/ref/contrib/csrf.txt +++ b/docs/ref/contrib/csrf.txt @@ -150,10 +150,11 @@ Other template engines ---------------------- When using a different template engine than Django's built-in engine, you can -set the token in your forms manually after making sure it is available in the -context of the template. +set the token in your forms manually after making sure it's available in the +template context. -So in Cheetah for example, your form could contain the following: +For example, in the Cheetah template language, your form could contain the +following: .. code-block:: html @@ -161,7 +162,7 @@ So in Cheetah for example, your form could contain the following: -You may use javascript similar to the :ref:`AJAX code ` above to get +You can use JavaScript similar to the :ref:`AJAX code ` above to get the value of the CSRF token. The decorator method