urls: Remove /reserveren prefix, since the webserver strips that already.
authorMatthijs Kooijman <matthijs@stdin.nl>
Tue, 19 Oct 2010 08:56:06 +0000 (10:56 +0200)
committerMatthijs Kooijman <matthijs@stdin.nl>
Tue, 19 Oct 2010 09:03:20 +0000 (11:03 +0200)
urls.py

diff --git a/urls.py b/urls.py
index e3a1d5c536576e115a035203f8ef802e03e27e24..c40951e351cd9a220888f0ce4ca1fe3b08c36318 100644 (file)
--- a/urls.py
+++ b/urls.py
@@ -4,7 +4,7 @@ from django.contrib import admin
 admin.autodiscover()
 
 urlpatterns = patterns('',
-    (r'^reserveren/$', 'dorestad-bookings.tickets.views.book'),
+    (r'^$', 'dorestad-bookings.tickets.views.book'),
     # Example:
     # (r'^dorestad1493/', include('dorestad1493.foo.urls')),