34 lines
1.1 KiB
Python
34 lines
1.1 KiB
Python
"""URL lookup for Company app."""
|
|
|
|
from django.urls import include, path, re_path
|
|
|
|
from . import views
|
|
|
|
company_urls = [
|
|
|
|
# Detail URLs for a specific Company instance
|
|
path(r'<int:pk>/', include([
|
|
re_path(r'^.*$', views.CompanyDetail.as_view(), name='company-detail'),
|
|
])),
|
|
|
|
re_path(r'suppliers/', views.CompanyIndex.as_view(), name='supplier-index'),
|
|
re_path(r'manufacturers/', views.CompanyIndex.as_view(), name='manufacturer-index'),
|
|
re_path(r'customers/', views.CompanyIndex.as_view(), name='customer-index'),
|
|
|
|
# Redirect any other patterns to the 'company' index which displays all companies
|
|
re_path(r'^.*$', views.CompanyIndex.as_view(), name='company-index'),
|
|
]
|
|
|
|
manufacturer_part_urls = [
|
|
|
|
path(r'<int:pk>/', views.ManufacturerPartDetail.as_view(template_name='company/manufacturer_part.html'), name='manufacturer-part-detail'),
|
|
]
|
|
|
|
supplier_part_urls = [
|
|
path(r'<int:pk>/', include([
|
|
re_path('^.*$', views.SupplierPartDetail.as_view(template_name='company/supplier_part.html'), name='supplier-part-detail'),
|
|
]))
|
|
|
|
|
|
]
|