losingle
unread,Jun 10, 2012, 12:21:08 AM6/10/12Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Django users
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 ...