# -*- coding: utf-8 -*- from django.conf.urls import patterns, include, url from views import PlaceDetail, PlaceList, PlaceCityCatalog, PlaceCountryCatalog, PlacePhoto urlpatterns = patterns('', url(r'country/(?P.*)/page/(?P\d+)/$', PlaceCountryCatalog.as_view(), {'meta_id': 49}), url(r'country/(?P.*)/$', PlaceCountryCatalog.as_view(), {'meta_id': 49}), url(r'city/(?P.*)/page/(?P\d+)/$', PlaceCityCatalog.as_view(), {'meta_id': 48}), url(r'city/(?P.*)/$', PlaceCityCatalog.as_view(), {'meta_id': 48}), url(r'(?P.*)/photo/page/(?P\d+)/$', PlacePhoto.as_view(), {'meta_id': 91}), url(r'(?P.*)/photo/$', PlacePhoto.as_view(), {'meta_id': 91}), url(r'page/(?P\d+)/$', PlaceList.as_view(), {'meta_id': 46}), url(r'(?P.*)/$', PlaceDetail.as_view(), {'meta_id': 47}), url(r'$', PlaceList.as_view(), {'meta_id':46}), )