瀏覽代碼

add startapp

DYaiu 4 年之前
父節點
當前提交
e3e3e4b66d
共有 7 個文件被更改,包括 17 次插入0 次删除
  1. 0 0
      workreport/__init__.py
  2. 3 0
      workreport/admin.py
  3. 5 0
      workreport/apps.py
  4. 0 0
      workreport/migrations/__init__.py
  5. 3 0
      workreport/models.py
  6. 3 0
      workreport/tests.py
  7. 3 0
      workreport/views.py

+ 0 - 0
workreport/__init__.py


+ 3 - 0
workreport/admin.py

@@ -0,0 +1,3 @@
+from django.contrib import admin
+
+# Register your models here.

+ 5 - 0
workreport/apps.py

@@ -0,0 +1,5 @@
+from django.apps import AppConfig
+
+
+class WorkreportConfig(AppConfig):
+    name = 'workreport'

+ 0 - 0
workreport/migrations/__init__.py


+ 3 - 0
workreport/models.py

@@ -0,0 +1,3 @@
+from django.db import models
+
+# Create your models here.

+ 3 - 0
workreport/tests.py

@@ -0,0 +1,3 @@
+from django.test import TestCase
+
+# Create your tests here.

+ 3 - 0
workreport/views.py

@@ -0,0 +1,3 @@
+from django.shortcuts import render
+
+# Create your views here.