mirror of https://github.com/jumpserver/jumpserver
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
406 B
13 lines
406 B
# 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'),
|
|
]
|