Create & update billings (products are not yet supported)
This commit is contained in:
parent
1c12494a67
commit
b030f5797f
4 changed files with 35 additions and 2 deletions
|
|
@ -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'),
|
||||
]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue