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,
             'extra_context':{'test':range(0, 10)},
             'extra_lookup_kwargs' : { 'order_by' : ['Email'],  'limit'
   : 100, }
}

urlpatterns = patterns('',
    (r'^list/(?P<page>\d+)/$',
'django.views.generic.list_detail.object_list',info_dict),
  )

########################
is it possible to use ,for example,
/list/3/

to move to page 3

(I tried that but it did not work)
Thank you for help
La.

Reply via email to