Hi,
i have my apps and try to use cache decorator in url.py but got error.
Here are the urls.py
from django.views.decorators.cache import cache_page
urlpatterns = patterns('article.views',
#(r'^$','index', { 'template_name': 'blog/public_list.html'}, 'index'),
(r'^$',cache_page('index'), { 'template_name':
'blog/public_list.html'}, 'index'),
)
the error is :
cache_page must be passed a view function if called with two arguments
what is wrong in the url.. note i also use the DDT (django debug toolbar) .
THanks for pointing me out..
--
You received this message because you are subscribed to the Google Groups
"Django users" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/django-users?hl=en.