12 lines
422 B
Python
12 lines
422 B
Python
from django.urls import path, include
|
|
|
|
from .views import PaymentStatusView
|
|
|
|
app_name = "payment"
|
|
|
|
urlpatterns = [
|
|
path('gateways/paypal/', include("payment.paypal.urls"), name="paypal"),
|
|
path('gateways/sepa/', include("payment.sepa.urls"), name="sepa"),
|
|
path('gateways/voucher/', include("payment.voucher.urls"), name="voucher"),
|
|
path('status/<slug:uuid>/', PaymentStatusView.as_view(), name="status"),
|
|
]
|