from django.conf.urls.defaults import * from django.conf import settings from models import Gallery, Photo, ADMIN_URL, STOCKPHOTO_URL info_dict = { 'extra_context': { 'admin_url': ADMIN_URL, 'stockphoto_url': STOCKPHOTO_URL} } urlpatterns = patterns('django.views.generic.list_detail', (r'^$', 'object_list', dict(info_dict, queryset=Gallery.objects.order_by('-date'), paginate_by=35, allow_empty= True)), (r'^(?P[\d\w-]+)/$', 'object_detail', dict(info_dict, queryset=Gallery.objects.all(), slug_field='slug')), (r'^(?P\d+)/$', 'object_detail', dict(info_dict, queryset=Gallery.objects.all())), (r'^detail/(?P\d+)/$', 'object_detail', dict(info_dict, queryset=Photo.objects.all())), ) urlpatterns += patterns('bn_django.photos.views', (r'^import/(?P\d+)/$', 'import_photos'), #(r'^export/(\d+)/$', 'export'), )