mirror of https://github.com/jumpserver/jumpserver
13 lines
406 B
Python
13 lines
406 B
Python
# coding:utf-8
|
|
from django.conf.urls import url
|
|
from .views import *
|
|
|
|
app_name = 'assets'
|
|
|
|
urlpatterns = [
|
|
url(r'^add/$', AssetAddView.as_view(), name='asset-add'),
|
|
url(r'^list/$', AssetListView.as_view(), name='asset-list'),
|
|
url(r'^(?P<pk>[0-9]+)/delete/$', AssetDeleteView.as_view(), name='asset-list'),
|
|
url(r'^(?P<pk>[0-9]+)/detail/$', AssetDetailView.as_view(), name='asset-detail'),
|
|
]
|