network_inventory/softwares/urls.py
2020-01-11 18:35:57 +01:00

9 lines
172 B
Python

from django.urls import path
from . import views
urlpatterns = [
path('customer/<int:pk>/licenses/', views.licenses_table_view,
name='licenses'),
]