[Update] 添加审计模块

This commit is contained in:
ibuler
2018-04-06 11:27:52 +08:00
parent 1d7ba3e204
commit 37c0062fae
18 changed files with 356 additions and 52 deletions

View File

@@ -0,0 +1,14 @@
# ~*~ coding: utf-8 ~*~
from __future__ import unicode_literals
from django.conf.urls import url
from .. import views
__all__ = ["urlpatterns"]
app_name = "audits"
urlpatterns = [
url(r'^ftp-log/$', views.FTPLogListView.as_view(), name='ftp-log-list'),
]