fixed crud list

fixed payments
upload -a
This commit is contained in:
2025-07-23 11:08:25 +03:00
parent a4a91e0053
commit 4603953458
53 changed files with 1512 additions and 1078 deletions
+2 -1
View File
@@ -1,7 +1,8 @@
from django.urls import path
from payments.views import PaymentCreateView
from payments.views import PaymentCreateView, some_view
urlpatterns = [
path("create/", PaymentCreateView.as_view(), name="payments_create"),
path('invoice/', some_view, name='payments_invoice'),
]