From: Matthijs Kooijman Date: Tue, 19 Oct 2010 08:56:06 +0000 (+0200) Subject: urls: Remove /reserveren prefix, since the webserver strips that already. X-Git-Url: https://git.stderr.nl/gitweb?p=matthijs%2Fprojects%2Fdorestad-bookings.git;a=commitdiff_plain;h=f8098c25947f4e98d991cbc15ecbb18e579a0f20 urls: Remove /reserveren prefix, since the webserver strips that already. --- 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')),