structure create

This commit is contained in:
RobbieHan
2018-10-19 19:22:54 +08:00
parent 2bba133771
commit f72efee2e1
15 changed files with 618 additions and 46 deletions

View File

@@ -1,9 +1,13 @@
from django.urls import path
from .views import SystemView
from . import views_structure
app_name = 'system'
urlpatterns = [
path('', SystemView.as_view(), name='login'),
path('basic/structure/', views_structure.StructureView.as_view(), name='basic-structure'),
path('basic/structure/create/', views_structure.StructureCreateView.as_view(), name='basic-structure-create'),
]