mirror of
https://git.v0id.ovh/n3wt-innov/n3wt-school.git
synced 2026-01-29 07:53:23 +00:00
feat: Mise en place des paiements en plusieurs fois - partie BACK [#25]
This commit is contained in:
@ -13,6 +13,8 @@ from School.views import (
|
||||
FeeView,
|
||||
DiscountsView,
|
||||
DiscountView,
|
||||
PaymentPlansView,
|
||||
PaymentPlanView
|
||||
)
|
||||
|
||||
urlpatterns = [
|
||||
@ -39,4 +41,8 @@ urlpatterns = [
|
||||
re_path(r'^discounts/(?P<_filter>[a-zA-z]+)$$', DiscountsView.as_view(), name="discounts"),
|
||||
re_path(r'^discount$', DiscountView.as_view(), name="discount"),
|
||||
re_path(r'^discount/([0-9]+)$', DiscountView.as_view(), name="discount"),
|
||||
|
||||
re_path(r'^paymentPlans/(?P<_filter>[a-zA-z]+)$', PaymentPlansView.as_view(), name="paymentPlans"),
|
||||
re_path(r'^paymentPlan$', PaymentPlanView.as_view(), name="paymentPlan"),
|
||||
re_path(r'^paymentPlan/([0-9]+)$', PaymentPlanView.as_view(), name="paymentPlan"),
|
||||
]
|
||||
Reference in New Issue
Block a user