mirror of
https://git.v0id.ovh/n3wt-innov/n3wt-school.git
synced 2026-01-28 23:43:22 +00:00
chore: commit qui sert à rien
This commit is contained in:
@ -16,7 +16,9 @@ from School.views import (
|
||||
PaymentPlansView,
|
||||
PaymentPlanView,
|
||||
PaymentModesView,
|
||||
PaymentModeView
|
||||
PaymentModeView,
|
||||
EstablishmentsView,
|
||||
EstablishmentView
|
||||
)
|
||||
|
||||
urlpatterns = [
|
||||
@ -51,4 +53,9 @@ urlpatterns = [
|
||||
re_path(r'^paymentModes/(?P<_filter>[a-zA-z]+)$', PaymentModesView.as_view(), name="paymentModes"),
|
||||
re_path(r'^paymentMode$', PaymentModeView.as_view(), name="paymentMode"),
|
||||
re_path(r'^paymentMode/([0-9]+)$', PaymentModeView.as_view(), name="paymentMode"),
|
||||
|
||||
re_path(r'^establishments$', EstablishmentsView.as_view(), name="establishments"),
|
||||
re_path(r'^establishment$', EstablishmentView.as_view(), name='establishment'),
|
||||
re_path(r'^establishment/([0-9]+)$', EstablishmentView.as_view(), name='establishment')
|
||||
|
||||
]
|
||||
Reference in New Issue
Block a user