Saturday, June 9, 2012

How to access HttpRequest from urls.py in Django? or better way.

I need access HttpRequest from urls.py
news_info_dict = {
'queryset': News.published.all(),
'date_field': 'pub_date',
}

news_info_month_dict = {
'queryset': News.published.all(),
'date_field': 'pub_date',
'month_format': '%m',
}

urlpatterns = patterns('django.views.generic.date_based',
(r'^$','archive_index', news_info_dict, 'news_archive_index'),
(r'^(?P<year>\d{4})/$','archive_year', news_info_dict,
'news_archive_year'),
(r'^(?P<year>\d{4})/(?P<month>\d{2})/$','archive_month',
news_info_month_dict, 'news_archive_month'),
(r'^(?P<year>\d{4})/(?P<month>\d{2})/(?P<day>\d{2})/
$','archive_day', news_info_month_dict, 'news_archive_day'),
(r'^(?P<year>\d{4})/(?P<month>\d{2})/(?P<day>\d{2})/(?P<slug>[-\w]
+).html$','object_detail', news_info_month_dict, 'news_detail'),
)

news_info_dict should be
news_info_dict = {
'queryset':News.published.filter(category=
request.category).all(),
'date_field': 'pub_date',
}

I couldn't find a way to access the HttpRequest (request) object
though... Or find the better way ...

--
You received this message because you are subscribed to the Google Groups "Django users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to django-users+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/django-users?hl=en.

0 Comments:

Post a Comment

Subscribe to Post Comments [Atom]

<< Home


Real Estate