You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
564 B
15 lines
564 B
from django.conf.urls import *
|
|
from ..sitemaps import GallerySitemap, PhotoSitemap
|
|
|
|
urlpatterns = patterns('',
|
|
(r'^ptests/', include('photologue.urls')),
|
|
)
|
|
|
|
sitemaps = {'photologue_galleries': GallerySitemap,
|
|
'photologue_photos': PhotoSitemap,
|
|
}
|
|
|
|
urlpatterns += patterns('',
|
|
(r'^sitemap.xml$', 'django.contrib.sitemaps.views.sitemap', {'sitemaps':
|
|
sitemaps})
|
|
)
|
|
|