summaryrefslogtreecommitdiff
path: root/docs/topics/auth.txt
diff options
context:
space:
mode:
authorClaude Paroz <claude@2xlibre.net>2012-04-24 19:55:52 +0000
committerClaude Paroz <claude@2xlibre.net>2012-04-24 19:55:52 +0000
commiteb351ac9cba2d6b2750aecb4353ba482d6dca87f (patch)
treebc36b15509d9d3066d6d91412be9d27c47719226 /docs/topics/auth.txt
parentc4e62eff9074bedb5f2242b46625c35721502989 (diff)
Fixed #18037 -- Changed behaviour of url and ssi template tags to the new syntax, as per official deprecation timeline. Thanks Ramiro Morales and Jannis Leidel for the review.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@17934 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs/topics/auth.txt')
-rw-r--r--docs/topics/auth.txt2
1 files changed, 0 insertions, 2 deletions
diff --git a/docs/topics/auth.txt b/docs/topics/auth.txt
index fcd8f4f677..d166fe5bcf 100644
--- a/docs/topics/auth.txt
+++ b/docs/topics/auth.txt
@@ -1020,7 +1020,6 @@ The login_required decorator
.. code-block:: html+django
{% extends "base.html" %}
- {% load url from future %}
{% block content %}
@@ -1242,7 +1241,6 @@ includes a few other useful built-in views located in
.. code-block:: html+django
- {% load url from future %}
Someone asked for password reset for email {{ email }}. Follow the link below:
{{ protocol}}://{{ site_name }}{% url 'auth_password_reset_confirm' uidb36=uid token=token %}