Edited csrf.txt changes from [17299]
git-svn-id: http://code.djangoproject.com/svn/django/trunk@17309 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
1fed65224f
commit
937213c2c3
|
@ -150,10 +150,11 @@ Other template engines
|
||||||
----------------------
|
----------------------
|
||||||
|
|
||||||
When using a different template engine than Django's built-in engine, you can
|
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
|
set the token in your forms manually after making sure it's available in the
|
||||||
context of the template.
|
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
|
.. code-block:: html
|
||||||
|
|
||||||
|
@ -161,7 +162,7 @@ So in Cheetah for example, your form could contain the following:
|
||||||
<input type="hidden" name="csrfmiddlewaretoken" value="$csrf_token"/>
|
<input type="hidden" name="csrfmiddlewaretoken" value="$csrf_token"/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
You may use javascript similar to the :ref:`AJAX code <csrf-ajax>` above to get
|
You can use JavaScript similar to the :ref:`AJAX code <csrf-ajax>` above to get
|
||||||
the value of the CSRF token.
|
the value of the CSRF token.
|
||||||
|
|
||||||
The decorator method
|
The decorator method
|
||||||
|
|
Loading…
Reference in New Issue