network_inventory/customers/urls.py
Andreas Zweili a0191b6dc2 PEP8
2020-08-03 13:41:49 +02:00

13 lines
331 B
Python

from django.urls import path
from . import views
urlpatterns = [
path('', views.customers_table_view, name='customers'),
path('customer/<int:pk>/', views.CustomerDetailView.as_view(),
name='customer'),
path('create/customer/',
views.CustomerCreateView.as_view(),
name='customer_create'),
]