7 lines
165 B
Python
7 lines
165 B
Python
from django.urls import path
|
|
|
|
from .views import SepaApplyPaymentView
|
|
|
|
urlpatterns = [
|
|
path('apply/', SepaApplyPaymentView.as_view(), name="superuser_apply"),
|
|
]
|