8 lines
158 B
Python
8 lines
158 B
Python
from django.urls import path
|
|
|
|
from backoffice.views import payments
|
|
|
|
urlpatterns = [
|
|
path('', payments.PaymentListView.as_view(), name='payment_list'),
|
|
]
|