Files
depot_django/payments/urls.py
T
2025-08-03 10:50:59 +03:00

10 lines
331 B
Python

from django.urls import path
from payments.views import PaymentCreateView, some_view, PaymentListView
urlpatterns = [
path('payments-list/', PaymentListView.as_view(), name='payments_list'),
path("create/", PaymentCreateView.as_view(), name="payments_create"),
path('invoice/', some_view, name='payments_invoice'),
]