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//', PaymentStatusView.as_view(), name="status"), ]