77ec96871c7bd93e40f9b4e47cc574cc35501542
[philo.git] / urls.py
1 from django.conf.urls.defaults import url, include, patterns, handler404, handler500
2 from philo.views import page_view
3
4
5 urlpatterns = patterns('',
6         url(r'^$', page_view, name='philo-root'),
7         url(r'^(?P<path>.*)$', page_view, name='philo-page-by-path')
8 )