phpbb: Make the username case-insensitve on login again.
[matthijs/projects/dorestad-bookings.git] / urls.py
diff --git a/urls.py b/urls.py
index e3a1d5c536576e115a035203f8ef802e03e27e24..4c9da01bd77fb6dd26c9e628252713c2936e1314 100644 (file)
--- a/urls.py
+++ b/urls.py
@@ -4,7 +4,9 @@ from django.contrib import admin
 admin.autodiscover()
 
 urlpatterns = patterns('',
-    (r'^reserveren/$', 'dorestad-bookings.tickets.views.book'),
+    (r'^$', 'dorestad-bookings.tickets.views.book'),
+    url(r'^betalingen/$', 'dorestad-bookings.tickets.views.payments', name='payments'),
+    url(r'^overzicht/$', 'dorestad-bookings.tickets.views.bookings', name='bookings'),
     # Example:
     # (r'^dorestad1493/', include('dorestad1493.foo.urls')),