added some filters to templates

This commit is contained in:
2025-08-03 10:50:59 +03:00
parent e824e87953
commit 13c4c324fc
29 changed files with 180 additions and 89 deletions
+2 -1
View File
@@ -1,8 +1,9 @@
from django.urls import path
from payments.views import PaymentCreateView, some_view
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'),
]