Fixed #9326 - Use decorator syntax in get_absolute_url example. Thanks, timo.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@12222 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Jannis Leidel 2010-01-12 23:37:07 +00:00
parent 9614b0190f
commit f56f6e9405
1 changed files with 1 additions and 1 deletions

View File

@ -508,9 +508,9 @@ of the view name::
from django.db.models import permalink
@models.permalink
def get_absolute_url(self):
return ('people_view', [str(self.id)])
get_absolute_url = permalink(get_absolute_url)
More details on named URL patterns are in the :ref:`URL dispatch documentation
<topics-http-urls>`.