@@ -19,6 +19,6 @@ from django.urls import path, include
urlpatterns = [
path('admin/', admin.site.urls),
- url(r'^report/', include('workreport.urls')),
- url(r'^tree/',include('workTtree.urls'))
+ url(r'^', include('workreport.urls')),
+ url(r'^',include('workTtree.urls'))
]
@@ -0,0 +1,3 @@
+from django.contrib import admin
+
+# Register your models here.
@@ -0,0 +1,5 @@
+from django.apps import AppConfig
+class TreeandtableConfig(AppConfig):
+ name = 'treeAndTable'
+from django.db import models
+# Create your models here.
+from django.test import TestCase
+# Create your tests here.
+from django.shortcuts import render
+# Create your views here.