diff --git a/.idea/modules.xml b/.idea/modules.xml
deleted file mode 100644
index b9796d491af2d6424856f8d1c1276353a05023d5..0000000000000000000000000000000000000000
--- a/.idea/modules.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/.idea/workspace.xml b/.idea/workspace.xml
index a812819e37c044715a8edb1808e48124f397fa13..62a47a9cee49bd9edbb6a60df9eea0cd1001373b 100644
--- a/.idea/workspace.xml
+++ b/.idea/workspace.xml
@@ -13,7 +13,6 @@
-
@@ -27,30 +26,40 @@
-
-
-
+
+
+
-
-
+
+
+
+
+
+
+
+
+
+
+
+
-
-
+
+
-
-
+
+
-
-
+
+
@@ -64,8 +73,8 @@
@@ -84,6 +93,7 @@
+
@@ -131,6 +141,30 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
@@ -145,30 +179,31 @@
-
+
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
-
-
+
+
+
-
-
+
+
@@ -178,24 +213,164 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
+
+
+
+
+
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dusen/__init__.py b/dusen/__init__.py
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/dusen/admin.py b/dusen/admin.py
new file mode 100644
index 0000000000000000000000000000000000000000..8c38f3f3dad51e4585f3984282c2a4bec5349c1e
--- /dev/null
+++ b/dusen/admin.py
@@ -0,0 +1,3 @@
+from django.contrib import admin
+
+# Register your models here.
diff --git a/dusen/apps.py b/dusen/apps.py
new file mode 100644
index 0000000000000000000000000000000000000000..80ceb3309c13e21bdd8f569416010c979f0f3ca6
--- /dev/null
+++ b/dusen/apps.py
@@ -0,0 +1,5 @@
+from django.apps import AppConfig
+
+
+class DusenConfig(AppConfig):
+ name = 'dusen'
diff --git a/dusen/migrations/__init__.py b/dusen/migrations/__init__.py
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/dusen/migrations/__pycache__/__init__.cpython-36.pyc b/dusen/migrations/__pycache__/__init__.cpython-36.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..4c16ba2a1b5e4cef642863c8ae2c4699dcb67d06
Binary files /dev/null and b/dusen/migrations/__pycache__/__init__.cpython-36.pyc differ
diff --git a/dusen/models.py b/dusen/models.py
new file mode 100644
index 0000000000000000000000000000000000000000..71a836239075aa6e6e4ecb700e9c42c95c022d91
--- /dev/null
+++ b/dusen/models.py
@@ -0,0 +1,3 @@
+from django.db import models
+
+# Create your models here.
diff --git a/dusen/tests.py b/dusen/tests.py
new file mode 100644
index 0000000000000000000000000000000000000000..7ce503c2dd97ba78597f6ff6e4393132753573f6
--- /dev/null
+++ b/dusen/tests.py
@@ -0,0 +1,3 @@
+from django.test import TestCase
+
+# Create your tests here.
diff --git a/dusen/urls.py b/dusen/urls.py
new file mode 100644
index 0000000000000000000000000000000000000000..a73c535a8f32f19dccf0351aeede9430a73d2d1f
--- /dev/null
+++ b/dusen/urls.py
@@ -0,0 +1,8 @@
+from django.urls import path, include
+from . import views
+app_name='dusen'
+
+urlpatterns = [
+ path('',views.index,name='index'),
+ path('dusen/',views.dusen,name='dusen')
+]
\ No newline at end of file
diff --git a/dusen/views.py b/dusen/views.py
new file mode 100644
index 0000000000000000000000000000000000000000..0f698f79a83ab29cce6b1f8d191b6a1bc862d083
--- /dev/null
+++ b/dusen/views.py
@@ -0,0 +1,8 @@
+from django.shortcuts import render
+
+# Create your views here.
+def index(request):
+ return render(request,'index.html')
+
+def dusen(request):
+ return render(request,'dusen.html')
diff --git a/fxy/migrations/__pycache__/__init__.cpython-36.pyc b/fxy/migrations/__pycache__/__init__.cpython-36.pyc
index 95f8f661b0fe2aeda7e7171c43e4d525c4f6e83a..0c9568d553ad6cd27ce1b0a314292dbb21110baf 100644
Binary files a/fxy/migrations/__pycache__/__init__.cpython-36.pyc and b/fxy/migrations/__pycache__/__init__.cpython-36.pyc differ
diff --git a/git_cs/settings.py b/git_cs/settings.py
index 2b98c42f2f57ded865271d8a704414e6cd413921..7675156ebd89348007be6ce8f5f08e6350ccb22f 100644
--- a/git_cs/settings.py
+++ b/git_cs/settings.py
@@ -40,6 +40,7 @@ INSTALLED_APPS = [
'hbj',
+ 'dusen',
'lishan',
'zhanghao',
'fxy',
diff --git a/git_cs/urls.py b/git_cs/urls.py
index 18869a5922d3d9262c874fb58b3df25dcfb2936a..a79d358849cb61a2bb178b95600459b8af90a73b 100644
--- a/git_cs/urls.py
+++ b/git_cs/urls.py
@@ -23,10 +23,17 @@ urlpatterns = [
path('',TemplateView.as_view(template_name='index.html')),
path('hbj/',include('hbj.urls')),
+
+ path('dusen/',include('dusen.urls')),
+ path('zhanghao/',include('zhanghao.urls')),
+
path('zhanghao/',include('zhanghao.urls')),
path('fxy/',include('fxy.urls')),
+
+
path('hxd/', include('houxiaodong.urls'))
+
]
diff --git a/hbj/__pycache__/__init__.cpython-36.pyc b/hbj/__pycache__/__init__.cpython-36.pyc
index 7f0682d5c1cae52c8a6c4c163577254019dc798c..76ebe62857b5a0b6f504f1c66cbc0ec76d2f90ac 100644
Binary files a/hbj/__pycache__/__init__.cpython-36.pyc and b/hbj/__pycache__/__init__.cpython-36.pyc differ
diff --git a/hbj/__pycache__/admin.cpython-36.pyc b/hbj/__pycache__/admin.cpython-36.pyc
index 8bc65b70802854053734b914b1cedc1f4ec041b6..9a15df6805f2756e92bd372d6e9b7807ecde80f3 100644
Binary files a/hbj/__pycache__/admin.cpython-36.pyc and b/hbj/__pycache__/admin.cpython-36.pyc differ
diff --git a/hbj/__pycache__/models.cpython-36.pyc b/hbj/__pycache__/models.cpython-36.pyc
index 250401e4d8a9d23f5b91d98b203f67ddc83dd709..ed8eb709278588908f1b95b39f112265a026d7a8 100644
Binary files a/hbj/__pycache__/models.cpython-36.pyc and b/hbj/__pycache__/models.cpython-36.pyc differ
diff --git a/hbj/__pycache__/urls.cpython-36.pyc b/hbj/__pycache__/urls.cpython-36.pyc
index a31f53127679795547e66c6868ad1463476018d8..813fe531872469f6aee1bf0230adb4d2ceba5756 100644
Binary files a/hbj/__pycache__/urls.cpython-36.pyc and b/hbj/__pycache__/urls.cpython-36.pyc differ
diff --git a/hbj/__pycache__/views.cpython-36.pyc b/hbj/__pycache__/views.cpython-36.pyc
index ecb14c28d1f4a54b8cb4e38df2949241e37bcaf8..40458ae065a57e84e1978a82cf6d18906f194159 100644
Binary files a/hbj/__pycache__/views.cpython-36.pyc and b/hbj/__pycache__/views.cpython-36.pyc differ
diff --git a/hbj/migrations/__pycache__/__init__.cpython-36.pyc b/hbj/migrations/__pycache__/__init__.cpython-36.pyc
index 5550e16270cae853bc7d712501cb927cc0b3bde6..cf253860de0c44a21e04cd2ba00308c09f087b7f 100644
Binary files a/hbj/migrations/__pycache__/__init__.cpython-36.pyc and b/hbj/migrations/__pycache__/__init__.cpython-36.pyc differ
diff --git a/lishan/migrations/__pycache__/__init__.cpython-36.pyc b/lishan/migrations/__pycache__/__init__.cpython-36.pyc
index ff3fdf730419191c99f4b186030347934e74167e..1c02ea315b1c7358cd4d3fdc686f903986ac07e1 100644
Binary files a/lishan/migrations/__pycache__/__init__.cpython-36.pyc and b/lishan/migrations/__pycache__/__init__.cpython-36.pyc differ
diff --git a/templates/dusen.html b/templates/dusen.html
new file mode 100644
index 0000000000000000000000000000000000000000..fb05421ce9663fd2722c14ca859f690bb35068e8
--- /dev/null
+++ b/templates/dusen.html
@@ -0,0 +1,10 @@
+
+
+
+
+ dusen
+
+
+杜森
+
+
\ No newline at end of file
diff --git a/templates/index.html b/templates/index.html
index 208fd27f61adfe6ede4bb27607161c508518297e..151c79527c2ca6d22903a914913e0af96543f13d 100644
--- a/templates/index.html
+++ b/templates/index.html
@@ -63,7 +63,7 @@
-
+ 杜森
diff --git a/zhanghao/migrations/__pycache__/__init__.cpython-36.pyc b/zhanghao/migrations/__pycache__/__init__.cpython-36.pyc
index a624a0027dc38d6b9f9eb2b0992f9559f41c1b41..ba1ae85bcbd8446fc7c0cea8ce048b8bb72f55d7 100644
Binary files a/zhanghao/migrations/__pycache__/__init__.cpython-36.pyc and b/zhanghao/migrations/__pycache__/__init__.cpython-36.pyc differ