Add payment provider PayPal

This commit is contained in:
Raphael Michel
2015-03-15 17:33:50 +01:00
parent d397c03fde
commit a67e09215b
10 changed files with 372 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
from django.conf.urls import url, include
from .views import success, abort, retry
urlpatterns = [
url(r'^paypal/', include([
url(r'^abort/$', abort, name='paypal.abort'),
url(r'^return/$', success, name='paypal.return'),
url(r'^retry/(?P<order>[^/]+)/', retry, name='paypal.retry')
])),
]