aboutsummaryrefslogtreecommitdiffstats
path: root/bn_django/photos/urls.py
blob: 233ccc4904984a6d145f21be684174c37cc1e3a3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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<slug>[\d\w-]+)/$', 'object_detail',
		dict(info_dict, queryset=Gallery.objects.all(), slug_field='slug')),
	(r'^(?P<object_id>\d+)/$', 'object_detail',
		dict(info_dict, queryset=Gallery.objects.all())),
	(r'^detail/(?P<object_id>\d+)/$', 'object_detail',
		dict(info_dict, queryset=Photo.objects.all())),
)
urlpatterns += patterns('bn_django.photos.views',
    (r'^import/(?P<thegallery>\d+)/$', 'import_photos'),
    #(r'^export/(\d+)/$', 'export'),
)