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

Add render button

This commit is contained in:
Yohann D'ANELLO
2020-03-21 07:36:07 +01:00
parent b030f5797f
commit 8ecaef0daf
4 changed files with 22 additions and 20 deletions

View File

@ -3,11 +3,12 @@
from django.urls import path
from .views import BillingCreateView, BillingListView, BillingUpdateView
from .views import BillingCreateView, BillingListView, BillingUpdateView, BillingRenderView
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'),
path('billing/render/<int:pk>/', BillingRenderView.as_view(), name='billing_render'),
]