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 [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.

Reply via email to