1
0
mirror of https://github.com/django/django.git synced 2025-04-03 13:06:49 +00:00

[1.8.x] Refs -- Discouraged using reverese() with callables.

Backport of a6acfc31837fd7a9e0e387320d995b2c85cfcfce from master
This commit is contained in:
Tim Graham 2015-08-03 08:33:51 -04:00
parent 5bdf0eafb1
commit f32bb3adf0

@ -26,6 +26,7 @@ you can use any of the following to reverse the URL::
reverse('news_archive')
# passing a callable object
# (This is discouraged because you can't reverse namespaced views this way.)
from news import views
reverse(views.archive)