From f8098c25947f4e98d991cbc15ecbb18e579a0f20 Mon Sep 17 00:00:00 2001 From: Matthijs Kooijman Date: Tue, 19 Oct 2010 10:56:06 +0200 Subject: [PATCH] urls: Remove /reserveren prefix, since the webserver strips that already. --- urls.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/urls.py b/urls.py index e3a1d5c..c40951e 100644 --- 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')), -- 2.30.2