diff options
| author | Luke Plant <L.Plant.98@cantab.net> | 2010-09-07 20:21:50 +0000 |
|---|---|---|
| committer | Luke Plant <L.Plant.98@cantab.net> | 2010-09-07 20:21:50 +0000 |
| commit | 4f4e20be3333a656996c027a52a4a06d4a2a2480 (patch) | |
| tree | 79f5035e3220155748ea3498b0f1ffc00f87d889 /docs | |
| parent | c8bcd5e5478205a5500c694c4ceef0df79627a00 (diff) | |
Fixed #13853 - line with csrf_token too wide
Thanks to alper for report, alper/richardb for patch
git-svn-id: http://code.djangoproject.com/svn/django/trunk@13688 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/topics/auth.txt | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/docs/topics/auth.txt b/docs/topics/auth.txt index d8712d52c8..4a6e30fc00 100644 --- a/docs/topics/auth.txt +++ b/docs/topics/auth.txt @@ -794,7 +794,8 @@ the following line to your URLconf:: <p>Your username and password didn't match. Please try again.</p> {% endif %} - <form method="post" action="{% url django.contrib.auth.views.login %}">{% csrf_token %} + <form method="post" action="{% url django.contrib.auth.views.login %}"> + {% csrf_token %} <table> <tr> <td>{{ form.username.label_tag }}</td> |
