Added multi-domain capabilities

This commit is contained in:
Raphael Michel
2015-10-18 14:01:28 +02:00
parent d7d6e74c04
commit 3fa0cfb077
38 changed files with 720 additions and 141 deletions
+1 -1
View File
@@ -3,7 +3,7 @@ from django.conf.urls import include, url
from .views import abort, retry, success
urlpatterns = [
url(r'^paypal/', include([
url(r'^(?:(?P<organizer>[^/]+)/)?(?P<event>[^/]+)/paypal/', include([
url(r'^abort/$', abort, name='abort'),
url(r'^return/$', success, name='return'),
url(r'^retry/(?P<order>[^/]+)/', retry, name='retry')