You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
491 B
Python
18 lines
491 B
Python
|
|
from django.urls import path, include
|
|
from billing import views
|
|
|
|
|
|
urlpatterns = [
|
|
path('add/', include('billing.add.urls')),
|
|
|
|
# LISTING
|
|
path('items/', views.items, name='items'),
|
|
path('orders/', views.orders, name='orders'),
|
|
path('invoices/', views.invoices, name='invoices'),
|
|
|
|
# DETAILS
|
|
path('invoice-details/<int:order_id>/', views.invoice_details, name='invoicedetails'),
|
|
path('order-details/<int:order_id>/', views.order_details, name='orderdetails'),
|
|
]
|