1
0
mirror of https://gitlab.crans.org/bde/nk20 synced 2025-06-21 01:48:21 +02:00

Create & update billings (products are not yet supported)

This commit is contained in:
Yohann D'ANELLO
2020-03-21 00:52:26 +01:00
parent 1c12494a67
commit b030f5797f
4 changed files with 35 additions and 2 deletions

View File

@ -3,9 +3,11 @@
from django.urls import path
from .views import BillingListView
from .views import BillingCreateView, BillingListView, BillingUpdateView
app_name = 'treasury'
urlpatterns = [
path('billing/', BillingListView.as_view(), name='billing'),
path('billing/create/', BillingCreateView.as_view(), name='billing_create'),
path('billing/<int:pk>/', BillingUpdateView.as_view(), name='billing_update'),
]