mirror of https://github.com/jumpserver/jumpserver
11 lines
212 B
Python
11 lines
212 B
Python
![]() |
# -*- coding: utf-8 -*-
|
||
|
#
|
||
|
|
||
|
from django.conf.urls import url
|
||
|
from .. import views
|
||
|
|
||
|
app_name = 'orgs'
|
||
|
|
||
|
urlpatterns = [
|
||
|
# url(r'^(?P<pk>[0-9a-zA-Z\-]{36})/$', views.OrgDetailView.as_view(), name='asset-index')
|
||
|
]
|