2014-12-23 09:34:36 +00:00
|
|
|
from django.conf.urls import patterns, include, url
|
2015-01-14 16:03:28 +00:00
|
|
|
from django.views.generic import TemplateView
|
2014-12-23 09:34:36 +00:00
|
|
|
|
|
|
|
urlpatterns = patterns(
|
|
|
|
'',
|
2015-01-14 16:03:28 +00:00
|
|
|
url('^$', TemplateView.as_view(template_name = 'front_template.html'), name = 'index'),
|
2014-12-23 08:13:22 +00:00
|
|
|
url('', include('booking.urls', namespace = 'booking')),
|
2014-12-23 09:34:36 +00:00
|
|
|
)
|