diff options
| author | Russell Keith-Magee <russell@keith-magee.com> | 2010-03-08 03:18:58 +0000 |
|---|---|---|
| committer | Russell Keith-Magee <russell@keith-magee.com> | 2010-03-08 03:18:58 +0000 |
| commit | abd0e9628564015097ec0eac0b87fc6fab1d7b9f (patch) | |
| tree | a26cf4701da26913b4e2d568ca636554ceb5caa9 /docs | |
| parent | e081160706cc7ac7943752632049a6dbe420bc6f (diff) | |
Fixed #13013 -- Added missing {% csrf_token %} in example form.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@12708 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/topics/i18n/internationalization.txt | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/docs/topics/i18n/internationalization.txt b/docs/topics/i18n/internationalization.txt index 316e538581..efbed044e8 100644 --- a/docs/topics/i18n/internationalization.txt +++ b/docs/topics/i18n/internationalization.txt @@ -568,6 +568,7 @@ Here's example HTML template code: .. code-block:: html+django <form action="/i18n/setlang/" method="post"> + {% csrf_token %} <input name="next" type="hidden" value="/next/page/" /> <select name="language"> {% for lang in LANGUAGES %} |
