mirror of https://gitlab.crans.org/bde/nk20
14 lines
468 B
Python
14 lines
468 B
Python
# Copyright (C) 2018-2020 by BDE ENS Paris-Saclay
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
from django.urls import path
|
|
|
|
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'),
|
|
]
|