added some filters to templates
This commit is contained in:
+2
-1
@@ -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'),
|
||||
]
|
||||
|
||||
Reference in New Issue
Block a user