Re: Problem/questions about generic views

2005-09-24 Thread Jason Davies
PythonistL wrote: > urlpatterns = patterns('', > (r'^list/(?P\d+)/$', > 'django.views.generic.list_detail.object_list',info_dict), > ) > > > is it possible to use ,for example, > /list/3/ > > to move to page 3 This doesn't work because object_list doesn't take a

Problem/questions about generic views

2005-09-24 Thread PythonistL
I use the generic view django.views.generic.list_detail.object_list In my main.py url I have ##main.py### info_dict = {'template_name':'shop/MyOwnTemplate', 'app_label': 'shop', 'module_name': 'registrations', 'paginate_by':10,