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