from django.conf.urls import url, patterns from models import LatestExpositions, CountryFeeds, CityFeeds, ThemeFeeds urlpatterns = patterns('', url(r'^latest/$', LatestExpositions()), url(r'^country/(?P.*)/$', CountryFeeds()), url(r'^city/(?P.*)/$', CityFeeds()), url(r'^theme/(?P.*)/$', ThemeFeeds()), )