diff --git a/1807c_git/db.sqlite3 b/1807c_git/db.sqlite3
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/1807c_git/git_cs/__init__.py b/1807c_git/git_cs/__init__.py
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/1807c_git/git_cs/settings.py b/1807c_git/git_cs/settings.py
new file mode 100644
index 0000000000000000000000000000000000000000..44afdecb9008a304f972c9659cd4a3b9ce526fe7
--- /dev/null
+++ b/1807c_git/git_cs/settings.py
@@ -0,0 +1,121 @@
+"""
+Django settings for git_cs project.
+
+Generated by 'django-admin startproject' using Django 2.2.
+
+For more information on this file, see
+https://docs.djangoproject.com/en/2.2/topics/settings/
+
+For the full list of settings and their values, see
+https://docs.djangoproject.com/en/2.2/ref/settings/
+"""
+
+import os
+
+# Build paths inside the project like this: os.path.join(BASE_DIR, ...)
+BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
+
+
+# Quick-start development settings - unsuitable for production
+# See https://docs.djangoproject.com/en/2.2/howto/deployment/checklist/
+
+# SECURITY WARNING: keep the secret key used in production secret!
+SECRET_KEY = 'p!o$*vb%!^&h^_&!jsh%_4fzzppsru-g!2!4@tm^2b8a=4_%9z'
+
+# SECURITY WARNING: don't run with debug turned on in production!
+DEBUG = True
+
+ALLOWED_HOSTS = []
+
+
+# Application definition
+
+INSTALLED_APPS = [
+ 'django.contrib.admin',
+ 'django.contrib.auth',
+ 'django.contrib.contenttypes',
+ 'django.contrib.sessions',
+ 'django.contrib.messages',
+ 'django.contrib.staticfiles',
+ 'shijian',
+]
+
+MIDDLEWARE = [
+ 'django.middleware.security.SecurityMiddleware',
+ 'django.contrib.sessions.middleware.SessionMiddleware',
+ 'django.middleware.common.CommonMiddleware',
+ 'django.middleware.csrf.CsrfViewMiddleware',
+ 'django.contrib.auth.middleware.AuthenticationMiddleware',
+ 'django.contrib.messages.middleware.MessageMiddleware',
+ 'django.middleware.clickjacking.XFrameOptionsMiddleware',
+]
+
+ROOT_URLCONF = 'git_cs.urls'
+
+TEMPLATES = [
+ {
+ 'BACKEND': 'django.template.backends.django.DjangoTemplates',
+ 'DIRS': [os.path.join(BASE_DIR, 'templates')],
+ 'APP_DIRS': True,
+ 'OPTIONS': {
+ 'context_processors': [
+ 'django.template.context_processors.debug',
+ 'django.template.context_processors.request',
+ 'django.contrib.auth.context_processors.auth',
+ 'django.contrib.messages.context_processors.messages',
+ ],
+ },
+ },
+]
+
+WSGI_APPLICATION = 'git_cs.wsgi.application'
+
+
+# Database
+# https://docs.djangoproject.com/en/2.2/ref/settings/#databases
+
+DATABASES = {
+ 'default': {
+ 'ENGINE': 'django.db.backends.sqlite3',
+ 'NAME': os.path.join(BASE_DIR, 'db.sqlite3'),
+ }
+}
+
+
+# Password validation
+# https://docs.djangoproject.com/en/2.2/ref/settings/#auth-password-validators
+
+AUTH_PASSWORD_VALIDATORS = [
+ {
+ 'NAME': 'django.contrib.auth.password_validation.UserAttributeSimilarityValidator',
+ },
+ {
+ 'NAME': 'django.contrib.auth.password_validation.MinimumLengthValidator',
+ },
+ {
+ 'NAME': 'django.contrib.auth.password_validation.CommonPasswordValidator',
+ },
+ {
+ 'NAME': 'django.contrib.auth.password_validation.NumericPasswordValidator',
+ },
+]
+
+
+# Internationalization
+# https://docs.djangoproject.com/en/2.2/topics/i18n/
+
+LANGUAGE_CODE = 'en-us'
+
+TIME_ZONE = 'UTC'
+
+USE_I18N = True
+
+USE_L10N = True
+
+USE_TZ = True
+
+
+# Static files (CSS, JavaScript, Images)
+# https://docs.djangoproject.com/en/2.2/howto/static-files/
+
+STATIC_URL = '/static/'
diff --git a/git_cs/__pycache__/urls.cpython-36.pyc b/1807c_git/git_cs/urls.py
similarity index 61%
rename from git_cs/__pycache__/urls.cpython-36.pyc
rename to 1807c_git/git_cs/urls.py
index 1ec19ee10c3cfa243663f169b5b9052e54bc0dc2..e1276f9d58d8d219f4c3a9f085f726de34912a7e 100644
Binary files a/git_cs/__pycache__/urls.cpython-36.pyc and b/1807c_git/git_cs/urls.py differ
diff --git a/git_cs/__pycache__/wsgi.cpython-36.pyc b/1807c_git/git_cs/wsgi.py
similarity index 39%
rename from git_cs/__pycache__/wsgi.cpython-36.pyc
rename to 1807c_git/git_cs/wsgi.py
index 42e149c13973d5923055bd5a7a8f464ffcb70119..4324fe434787ae98973e69311ea71c26f7589c72 100644
Binary files a/git_cs/__pycache__/wsgi.cpython-36.pyc and b/1807c_git/git_cs/wsgi.py differ
diff --git a/1807c_git/manage.py b/1807c_git/manage.py
new file mode 100644
index 0000000000000000000000000000000000000000..172b63e148ed7dd3f311579e56da87c52dab1f34
--- /dev/null
+++ b/1807c_git/manage.py
@@ -0,0 +1,21 @@
+#!/usr/bin/env python
+"""Django's command-line utility for administrative tasks."""
+import os
+import sys
+
+
+def main():
+ os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'git_cs.settings')
+ try:
+ from django.core.management import execute_from_command_line
+ except ImportError as exc:
+ raise ImportError(
+ "Couldn't import Django. Are you sure it's installed and "
+ "available on your PYTHONPATH environment variable? Did you "
+ "forget to activate a virtual environment?"
+ ) from exc
+ execute_from_command_line(sys.argv)
+
+
+if __name__ == '__main__':
+ main()
diff --git a/1807c_git/shijian/__init__.py b/1807c_git/shijian/__init__.py
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/1807c_git/shijian/admin.py b/1807c_git/shijian/admin.py
new file mode 100644
index 0000000000000000000000000000000000000000..8c38f3f3dad51e4585f3984282c2a4bec5349c1e
--- /dev/null
+++ b/1807c_git/shijian/admin.py
@@ -0,0 +1,3 @@
+from django.contrib import admin
+
+# Register your models here.
diff --git a/1807c_git/shijian/apps.py b/1807c_git/shijian/apps.py
new file mode 100644
index 0000000000000000000000000000000000000000..6faf30db9c02a13d5b77a57da3074cfcd48ebef4
--- /dev/null
+++ b/1807c_git/shijian/apps.py
@@ -0,0 +1,5 @@
+from django.apps import AppConfig
+
+
+class ShijianConfig(AppConfig):
+ name = 'shijian'
diff --git a/1807c_git/shijian/migrations/__init__.py b/1807c_git/shijian/migrations/__init__.py
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/1807c_git/shijian/migrations/__pycache__/__init__.cpython-37.pyc b/1807c_git/shijian/migrations/__pycache__/__init__.cpython-37.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..4d5ce7287001b8ee8989ef582cd54a06dbfcb94e
Binary files /dev/null and b/1807c_git/shijian/migrations/__pycache__/__init__.cpython-37.pyc differ
diff --git a/1807c_git/shijian/models.py b/1807c_git/shijian/models.py
new file mode 100644
index 0000000000000000000000000000000000000000..71a836239075aa6e6e4ecb700e9c42c95c022d91
--- /dev/null
+++ b/1807c_git/shijian/models.py
@@ -0,0 +1,3 @@
+from django.db import models
+
+# Create your models here.
diff --git a/1807c_git/shijian/tests.py b/1807c_git/shijian/tests.py
new file mode 100644
index 0000000000000000000000000000000000000000..7ce503c2dd97ba78597f6ff6e4393132753573f6
--- /dev/null
+++ b/1807c_git/shijian/tests.py
@@ -0,0 +1,3 @@
+from django.test import TestCase
+
+# Create your tests here.
diff --git a/1807c_git/shijian/urls.py b/1807c_git/shijian/urls.py
new file mode 100644
index 0000000000000000000000000000000000000000..5155169d3652e202a5cef55eee65d00007f253b9
--- /dev/null
+++ b/1807c_git/shijian/urls.py
@@ -0,0 +1,5 @@
+from django.urls import path
+from shijian import views
+urlpatterns = [
+ path('', views.index, name='index'),
+]
diff --git a/1807c_git/shijian/views.py b/1807c_git/shijian/views.py
new file mode 100644
index 0000000000000000000000000000000000000000..2338864fde52fd2e6945e3e40ab89afe9f8d3655
--- /dev/null
+++ b/1807c_git/shijian/views.py
@@ -0,0 +1,6 @@
+from django.shortcuts import render
+
+# Create your views here.
+def index(request):
+
+ return render(request, 'shijian.html')
\ No newline at end of file
diff --git a/1807c_git/templates/index.html b/1807c_git/templates/index.html
new file mode 100644
index 0000000000000000000000000000000000000000..34588fa33c3823615f7d5295a1875e5f3f91f73b
--- /dev/null
+++ b/1807c_git/templates/index.html
@@ -0,0 +1,64 @@
+
+
+
+
+ Title
+
+
+1807C Git 测试项目
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/1807c_git/templates/shijian.html b/1807c_git/templates/shijian.html
new file mode 100644
index 0000000000000000000000000000000000000000..251c8433e745fc63e4dc3246d9d19b33327b7efd
--- /dev/null
+++ b/1807c_git/templates/shijian.html
@@ -0,0 +1,10 @@
+
+
+
+
+ 石坚
+
+
+石坚
+
+
\ No newline at end of file
diff --git a/dev b/dev
new file mode 160000
index 0000000000000000000000000000000000000000..ed670d6c45d796610684bf0c07a065a866f4f6d0
--- /dev/null
+++ b/dev
@@ -0,0 +1 @@
+Subproject commit ed670d6c45d796610684bf0c07a065a866f4f6d0
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/__pycache__/__init__.cpython-35.pyc b/dusen/migrations/__pycache__/__init__.cpython-35.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..3e369f38f9d0ba3901b1c35b6ffae5a009fdb8c0
Binary files /dev/null and b/dusen/migrations/__pycache__/__init__.cpython-35.pyc differ
diff --git a/dusen/migrations/__pycache__/__init__.cpython-36.pyc b/dusen/migrations/__pycache__/__init__.cpython-36.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..6496188cd85bce19b9226ad7e920b74512b21442
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/__init__.py b/fxy/__init__.py
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/fxy/admin.py b/fxy/admin.py
new file mode 100644
index 0000000000000000000000000000000000000000..8c38f3f3dad51e4585f3984282c2a4bec5349c1e
--- /dev/null
+++ b/fxy/admin.py
@@ -0,0 +1,3 @@
+from django.contrib import admin
+
+# Register your models here.
diff --git a/fxy/apps.py b/fxy/apps.py
new file mode 100644
index 0000000000000000000000000000000000000000..ef39e8c208a73ed2da54376ca052e9c81214c2e7
--- /dev/null
+++ b/fxy/apps.py
@@ -0,0 +1,5 @@
+from django.apps import AppConfig
+
+
+class FxyConfig(AppConfig):
+ name = 'fxy'
diff --git a/fxy/migrations/__pycache__/__init__.cpython-35.pyc b/fxy/migrations/__pycache__/__init__.cpython-35.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..8d4e66dfa8a144577ff5e0b5bc43901cd1025062
Binary files /dev/null and b/fxy/migrations/__pycache__/__init__.cpython-35.pyc differ
diff --git a/fxy/migrations/__pycache__/__init__.cpython-36.pyc b/fxy/migrations/__pycache__/__init__.cpython-36.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..693f4fdd0af3c9d5cae2c6ff5eeb717013c1b736
Binary files /dev/null and b/fxy/migrations/__pycache__/__init__.cpython-36.pyc differ
diff --git a/fxy/models.py b/fxy/models.py
new file mode 100644
index 0000000000000000000000000000000000000000..71a836239075aa6e6e4ecb700e9c42c95c022d91
--- /dev/null
+++ b/fxy/models.py
@@ -0,0 +1,3 @@
+from django.db import models
+
+# Create your models here.
diff --git a/fxy/tests.py b/fxy/tests.py
new file mode 100644
index 0000000000000000000000000000000000000000..7ce503c2dd97ba78597f6ff6e4393132753573f6
--- /dev/null
+++ b/fxy/tests.py
@@ -0,0 +1,3 @@
+from django.test import TestCase
+
+# Create your tests here.
diff --git a/fxy/urls.py b/fxy/urls.py
new file mode 100644
index 0000000000000000000000000000000000000000..93c8ad01dfccc2eaf1a68233d0a22e4998c88992
--- /dev/null
+++ b/fxy/urls.py
@@ -0,0 +1,7 @@
+from django.urls import path
+from fxy import views
+
+app_name = 'fxy'
+urlpatterns = [
+ path('fxy/',views.fxy,name='fxy')
+]
\ No newline at end of file
diff --git a/fxy/views.py b/fxy/views.py
new file mode 100644
index 0000000000000000000000000000000000000000..8e85b4f3ead3814a1273a2f645964d32dae7be9d
--- /dev/null
+++ b/fxy/views.py
@@ -0,0 +1,5 @@
+from django.shortcuts import render
+
+# Create your views here.
+def fxy(request):
+ return render(request,'fxy.html')
\ No newline at end of file
diff --git a/git_cs/__pycache__/__init__.cpython-36.pyc b/git_cs/__pycache__/__init__.cpython-36.pyc
deleted file mode 100644
index f9bc28ed002a24c21ff9e10f832c527dd274ece3..0000000000000000000000000000000000000000
Binary files a/git_cs/__pycache__/__init__.cpython-36.pyc and /dev/null differ
diff --git a/git_cs/__pycache__/settings.cpython-36.pyc b/git_cs/__pycache__/settings.cpython-36.pyc
deleted file mode 100644
index 3b4e18e771daaa9eaf02f6256adb744ba4e33c35..0000000000000000000000000000000000000000
Binary files a/git_cs/__pycache__/settings.cpython-36.pyc and /dev/null differ
diff --git a/git_cs/settings.py b/git_cs/settings.py
index 94f29d941d064548b18affd2c65d2f72cfcd15fa..bf244f0da4fb5cf8c973914b2227b94f307f6773 100644
--- a/git_cs/settings.py
+++ b/git_cs/settings.py
@@ -37,6 +37,73 @@ INSTALLED_APPS = [
'django.contrib.sessions',
'django.contrib.messages',
'django.contrib.staticfiles',
+
+<<<<<<< HEAD
+ # 'huoyanan',
+
+
+
+
+
+ # 'huoyanan',
+
+ 'huoyanan',
+
+
+ 'klq',
+ 'hbj',
+ 'dusen',
+ 'lishan',
+ 'zhanghao',
+ 'fxy',
+ 'houxiaodong',
+ 'guanliang',
+ 'lilei',
+
+ 'wsw',
+
+ 'houjunjie',
+
+
+
+
+ # 'wangmwngli',
+
+
+
+
+ # 'mazhen',
+
+
+
+
+
+ 'liyichao',
+ 'slq',
+
+ 'guohongyi',
+
+
+
+
+ 'zhangruiqiang',
+
+
+
+
+
+
+
+
+
+ 'sxh',
+
+
+=======
+
+
+ 'zhanyashuai'
+>>>>>>> zhan
]
MIDDLEWARE = [
diff --git a/git_cs/urls.py b/git_cs/urls.py
index ec77a28ffffa215462e7b2a7ee60095f54f54353..2324669551f95463a0fd6b1961ca2dfacd86075d 100644
--- a/git_cs/urls.py
+++ b/git_cs/urls.py
@@ -15,6 +15,95 @@ Including another URLconf
"""
from django.urls import path, include
from django.views.generic.base import TemplateView
+
urlpatterns = [
+
+ path('lishan',include('lishan.urls')),
path('',TemplateView.as_view(template_name='index.html')),
+
+<<<<<<< HEAD
+
+ path('huoyanan/',include('huoyanan.urls')),
+
+ path('klq/',include('klq.urls')),
+ path('hbj/',include('hbj.urls')),
+ path('dusen/',include('dusen.urls')),
+ path('zhanghao/',include('zhanghao.urls')),
+ path('lilei/', include('lilei.urls')),
+
+
+ # path('zhanghao/',include('zhanghao.urls')),
+
+ #path('zhanghao/',include('zhanghao.urls')),
+
+
+
+ # path('zhanghao/',include('zhanghao.urls')),
+
+
+
+
+ path('fxy/',include('fxy.urls')),
+
+ path('hxd/', include('houxiaodong.urls')),
+
+
+ path('guanliang/', include('guanliang.urls')),
+
+
+
+
+
+
+ # path('hxd/', include('houxiaodong.urls')),
+
+
+ #path('hxd/', include('houxiaodong.urls')),
+
+
+ path('wsw/',include('wsw.urls')),
+
+
+
+ path('houjunjie/', include('houjunjie.urls')),
+
+
+ path('wangmengli/', include('wangmwngli.urls')),
+ path('gonghongyi/', include('guohongyi.urls')),
+
+
+
+ path('slq/', include('slq.urls')),
+
+
+
+
+
+ path('mazhen/',include('mazhen.urls')),
+ path('liyichao',include('liyichao.urls')),
+
+
+
+ path('zhangruiqiang/',include('zhangruiqiang.urls')),
+
+
+
+
+
+ path("sxh/",include("sxh.urls")),
+
+
+
+ path('zhangruiqiang/',include('zhangruiqiang.urls')),
+
+
+
+
+ path('zhangruiqiang/',include('zhangruiqiang.urls')),
+
+
+
+=======
+ path('zhangyashuai/',include('zhanyashuai.urls'))
+>>>>>>> zhan
]
diff --git a/guanliang/__init__.py b/guanliang/__init__.py
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/guanliang/admin.py b/guanliang/admin.py
new file mode 100644
index 0000000000000000000000000000000000000000..8c38f3f3dad51e4585f3984282c2a4bec5349c1e
--- /dev/null
+++ b/guanliang/admin.py
@@ -0,0 +1,3 @@
+from django.contrib import admin
+
+# Register your models here.
diff --git a/guanliang/apps.py b/guanliang/apps.py
new file mode 100644
index 0000000000000000000000000000000000000000..d054ea5386fd3bb2ae84178fe4f8820423df52b9
--- /dev/null
+++ b/guanliang/apps.py
@@ -0,0 +1,5 @@
+from django.apps import AppConfig
+
+
+class GuanliangConfig(AppConfig):
+ name = 'guanliang'
diff --git a/guanliang/migrations/__pycache__/__init__.cpython-35.pyc b/guanliang/migrations/__pycache__/__init__.cpython-35.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..f33742e8ab196b68f26a83f7909889c6a3194dab
Binary files /dev/null and b/guanliang/migrations/__pycache__/__init__.cpython-35.pyc differ
diff --git a/guanliang/migrations/__pycache__/__init__.cpython-36.pyc b/guanliang/migrations/__pycache__/__init__.cpython-36.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..553baaa4b7dab658067ae56eea405a2f43b02d6f
Binary files /dev/null and b/guanliang/migrations/__pycache__/__init__.cpython-36.pyc differ
diff --git a/guanliang/models.py b/guanliang/models.py
new file mode 100644
index 0000000000000000000000000000000000000000..71a836239075aa6e6e4ecb700e9c42c95c022d91
--- /dev/null
+++ b/guanliang/models.py
@@ -0,0 +1,3 @@
+from django.db import models
+
+# Create your models here.
diff --git a/guanliang/tests.py b/guanliang/tests.py
new file mode 100644
index 0000000000000000000000000000000000000000..7ce503c2dd97ba78597f6ff6e4393132753573f6
--- /dev/null
+++ b/guanliang/tests.py
@@ -0,0 +1,3 @@
+from django.test import TestCase
+
+# Create your tests here.
diff --git a/guanliang/urls.py b/guanliang/urls.py
new file mode 100644
index 0000000000000000000000000000000000000000..bb6587e2e5fb09f4ddaf20124779e41200c32b54
--- /dev/null
+++ b/guanliang/urls.py
@@ -0,0 +1,7 @@
+from django.urls import path
+from guanliang import views
+
+app_name = 'guanliangliang'
+urlpatterns = [
+ path('guanliang/', views.index, name='guan')
+]
\ No newline at end of file
diff --git a/guanliang/views.py b/guanliang/views.py
new file mode 100644
index 0000000000000000000000000000000000000000..b2812e658a79a69713011b776078180d10c174a8
--- /dev/null
+++ b/guanliang/views.py
@@ -0,0 +1,5 @@
+from django.shortcuts import render
+
+# Create your views here.
+def index(request):
+ return render(request, 'guanliang.html')
\ No newline at end of file
diff --git a/guohongyi/__init__.py b/guohongyi/__init__.py
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/guohongyi/admin.py b/guohongyi/admin.py
new file mode 100644
index 0000000000000000000000000000000000000000..8c38f3f3dad51e4585f3984282c2a4bec5349c1e
--- /dev/null
+++ b/guohongyi/admin.py
@@ -0,0 +1,3 @@
+from django.contrib import admin
+
+# Register your models here.
diff --git a/guohongyi/apps.py b/guohongyi/apps.py
new file mode 100644
index 0000000000000000000000000000000000000000..b6d1b39e9d26e765737bec75c5230defe0fa3275
--- /dev/null
+++ b/guohongyi/apps.py
@@ -0,0 +1,5 @@
+from django.apps import AppConfig
+
+
+class GuohongyiConfig(AppConfig):
+ name = 'guohongyi'
diff --git a/guohongyi/migrations/__init__.py b/guohongyi/migrations/__init__.py
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/guohongyi/migrations/__pycache__/__init__.cpython-36.pyc b/guohongyi/migrations/__pycache__/__init__.cpython-36.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..582a3cb3d0449ddffbac4b0c80ae8573630c7dfa
Binary files /dev/null and b/guohongyi/migrations/__pycache__/__init__.cpython-36.pyc differ
diff --git a/guohongyi/models.py b/guohongyi/models.py
new file mode 100644
index 0000000000000000000000000000000000000000..71a836239075aa6e6e4ecb700e9c42c95c022d91
--- /dev/null
+++ b/guohongyi/models.py
@@ -0,0 +1,3 @@
+from django.db import models
+
+# Create your models here.
diff --git a/guohongyi/tests.py b/guohongyi/tests.py
new file mode 100644
index 0000000000000000000000000000000000000000..7ce503c2dd97ba78597f6ff6e4393132753573f6
--- /dev/null
+++ b/guohongyi/tests.py
@@ -0,0 +1,3 @@
+from django.test import TestCase
+
+# Create your tests here.
diff --git a/guohongyi/urls.py b/guohongyi/urls.py
new file mode 100644
index 0000000000000000000000000000000000000000..46676d88cd0bc383e2ed4c828334a6fcdb36ee10
--- /dev/null
+++ b/guohongyi/urls.py
@@ -0,0 +1,8 @@
+from django.urls import path, include
+from guohongyi import views
+app_name='guohongyi'
+
+urlpatterns = [
+
+ path('guohongyi/',views.guohongyi,name='guohongyi')
+]
\ No newline at end of file
diff --git a/guohongyi/views.py b/guohongyi/views.py
new file mode 100644
index 0000000000000000000000000000000000000000..f72b613b5ff9046fded762b1e0186b8b19bc9899
--- /dev/null
+++ b/guohongyi/views.py
@@ -0,0 +1,5 @@
+from django.shortcuts import render
+
+# Create your views here.
+def guohongyi(request):
+ return render(request, 'gonghongyi.html')
\ No newline at end of file
diff --git a/hbj/__init__.py b/hbj/__init__.py
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/hbj/admin.py b/hbj/admin.py
new file mode 100644
index 0000000000000000000000000000000000000000..8c38f3f3dad51e4585f3984282c2a4bec5349c1e
--- /dev/null
+++ b/hbj/admin.py
@@ -0,0 +1,3 @@
+from django.contrib import admin
+
+# Register your models here.
diff --git a/hbj/apps.py b/hbj/apps.py
new file mode 100644
index 0000000000000000000000000000000000000000..8ac326454c7a56e951a42c3a6926cd375e6431c8
--- /dev/null
+++ b/hbj/apps.py
@@ -0,0 +1,5 @@
+from django.apps import AppConfig
+
+
+class HbjConfig(AppConfig):
+ name = 'hbj'
diff --git a/hbj/migrations/__pycache__/__init__.cpython-35.pyc b/hbj/migrations/__pycache__/__init__.cpython-35.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..5ca582c3e68c3198bcf57eea2ef3416df36569a4
Binary files /dev/null and b/hbj/migrations/__pycache__/__init__.cpython-35.pyc differ
diff --git a/hbj/migrations/__pycache__/__init__.cpython-36.pyc b/hbj/migrations/__pycache__/__init__.cpython-36.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..511e282e0e42dff66d0ec8e4c35d03d2f1e38e0c
Binary files /dev/null and b/hbj/migrations/__pycache__/__init__.cpython-36.pyc differ
diff --git a/hbj/models.py b/hbj/models.py
new file mode 100644
index 0000000000000000000000000000000000000000..71a836239075aa6e6e4ecb700e9c42c95c022d91
--- /dev/null
+++ b/hbj/models.py
@@ -0,0 +1,3 @@
+from django.db import models
+
+# Create your models here.
diff --git a/hbj/tests.py b/hbj/tests.py
new file mode 100644
index 0000000000000000000000000000000000000000..7ce503c2dd97ba78597f6ff6e4393132753573f6
--- /dev/null
+++ b/hbj/tests.py
@@ -0,0 +1,3 @@
+from django.test import TestCase
+
+# Create your tests here.
diff --git a/hbj/urls.py b/hbj/urls.py
new file mode 100644
index 0000000000000000000000000000000000000000..750643988d3b1035c04cada4213ac1ad57f1d47a
--- /dev/null
+++ b/hbj/urls.py
@@ -0,0 +1,8 @@
+from django.urls import path
+from hbj import views
+
+app_name='hbj'
+urlpatterns = [
+ path('hbj/',views.hbj,name='hbj')
+]
+
diff --git a/hbj/views.py b/hbj/views.py
new file mode 100644
index 0000000000000000000000000000000000000000..9fe2aab35cb2db55f0e2ef83ec1f963d47d2a375
--- /dev/null
+++ b/hbj/views.py
@@ -0,0 +1,5 @@
+from django.shortcuts import render
+
+# Create your views here
+def hbj(request):
+ return render(request,'hbj.html')
\ No newline at end of file
diff --git a/houjunjie/__init__.py b/houjunjie/__init__.py
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/houjunjie/admin.py b/houjunjie/admin.py
new file mode 100644
index 0000000000000000000000000000000000000000..8c38f3f3dad51e4585f3984282c2a4bec5349c1e
--- /dev/null
+++ b/houjunjie/admin.py
@@ -0,0 +1,3 @@
+from django.contrib import admin
+
+# Register your models here.
diff --git a/houjunjie/apps.py b/houjunjie/apps.py
new file mode 100644
index 0000000000000000000000000000000000000000..2bf6356cb68c042d5636dc038d9c35b85fddd758
--- /dev/null
+++ b/houjunjie/apps.py
@@ -0,0 +1,5 @@
+from django.apps import AppConfig
+
+
+class HoujunjieConfig(AppConfig):
+ name = 'houjunjie'
diff --git a/houjunjie/models.py b/houjunjie/models.py
new file mode 100644
index 0000000000000000000000000000000000000000..71a836239075aa6e6e4ecb700e9c42c95c022d91
--- /dev/null
+++ b/houjunjie/models.py
@@ -0,0 +1,3 @@
+from django.db import models
+
+# Create your models here.
diff --git a/houjunjie/tests.py b/houjunjie/tests.py
new file mode 100644
index 0000000000000000000000000000000000000000..7ce503c2dd97ba78597f6ff6e4393132753573f6
--- /dev/null
+++ b/houjunjie/tests.py
@@ -0,0 +1,3 @@
+from django.test import TestCase
+
+# Create your tests here.
diff --git a/houjunjie/urls.py b/houjunjie/urls.py
new file mode 100644
index 0000000000000000000000000000000000000000..fb66040a47fe44997baf664006beb2874f37b307
--- /dev/null
+++ b/houjunjie/urls.py
@@ -0,0 +1,6 @@
+from houjunjie import views
+from django.urls import path
+app_name = 'houjunjie'
+urlpatterns = [
+ path('', views.houjunjie, name='houjunjie')
+]
\ No newline at end of file
diff --git a/houjunjie/views.py b/houjunjie/views.py
new file mode 100644
index 0000000000000000000000000000000000000000..03bea923aea227056744db128a71450212f63e3b
--- /dev/null
+++ b/houjunjie/views.py
@@ -0,0 +1,6 @@
+from django.shortcuts import render
+
+# Create your views here.
+
+def houjunjie(request):
+ return render(request, 'houjunjie.html')
\ No newline at end of file
diff --git a/houxiaodong/__init__.py b/houxiaodong/__init__.py
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/houxiaodong/__pycache__/__init__.cpython-36.pyc b/houxiaodong/__pycache__/__init__.cpython-36.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..0b7949a9b042a060d41cafc361598bb38d859a97
Binary files /dev/null and b/houxiaodong/__pycache__/__init__.cpython-36.pyc differ
diff --git a/houxiaodong/__pycache__/__init__.cpython-37.pyc b/houxiaodong/__pycache__/__init__.cpython-37.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..3d978705e60cbf674062ab8b75fba0893a76f553
Binary files /dev/null and b/houxiaodong/__pycache__/__init__.cpython-37.pyc differ
diff --git a/houxiaodong/__pycache__/admin.cpython-36.pyc b/houxiaodong/__pycache__/admin.cpython-36.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..9234b4607fc68a6e3e3e9a56f3765d9489e6968c
Binary files /dev/null and b/houxiaodong/__pycache__/admin.cpython-36.pyc differ
diff --git a/houxiaodong/__pycache__/admin.cpython-37.pyc b/houxiaodong/__pycache__/admin.cpython-37.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..6628ae69cb623b8bef62fe71963c4d87ca161e5f
Binary files /dev/null and b/houxiaodong/__pycache__/admin.cpython-37.pyc differ
diff --git a/houxiaodong/__pycache__/models.cpython-36.pyc b/houxiaodong/__pycache__/models.cpython-36.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..f9ff9ddc9d701a7ee3da659c6c34b448e3bbda7b
Binary files /dev/null and b/houxiaodong/__pycache__/models.cpython-36.pyc differ
diff --git a/houxiaodong/__pycache__/models.cpython-37.pyc b/houxiaodong/__pycache__/models.cpython-37.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..d14a7a197b0ab87836685a773affceb7c30021b9
Binary files /dev/null and b/houxiaodong/__pycache__/models.cpython-37.pyc differ
diff --git a/houxiaodong/__pycache__/urls.cpython-36.pyc b/houxiaodong/__pycache__/urls.cpython-36.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..48ce631d63818942ccd5ead21b5fa58af328af71
Binary files /dev/null and b/houxiaodong/__pycache__/urls.cpython-36.pyc differ
diff --git a/houxiaodong/__pycache__/urls.cpython-37.pyc b/houxiaodong/__pycache__/urls.cpython-37.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..40c4058a81534172fda6ba9ff60c4aebbf9a34f1
Binary files /dev/null and b/houxiaodong/__pycache__/urls.cpython-37.pyc differ
diff --git a/houxiaodong/__pycache__/views.cpython-36.pyc b/houxiaodong/__pycache__/views.cpython-36.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..d4697ef4c28c97aa1e9dad2e8551ced07f7570b2
Binary files /dev/null and b/houxiaodong/__pycache__/views.cpython-36.pyc differ
diff --git a/houxiaodong/__pycache__/views.cpython-37.pyc b/houxiaodong/__pycache__/views.cpython-37.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..e015118ba7b8a5344f3ead754b06af431abaab7c
Binary files /dev/null and b/houxiaodong/__pycache__/views.cpython-37.pyc differ
diff --git a/houxiaodong/admin.py b/houxiaodong/admin.py
new file mode 100644
index 0000000000000000000000000000000000000000..8c38f3f3dad51e4585f3984282c2a4bec5349c1e
--- /dev/null
+++ b/houxiaodong/admin.py
@@ -0,0 +1,3 @@
+from django.contrib import admin
+
+# Register your models here.
diff --git a/houxiaodong/apps.py b/houxiaodong/apps.py
new file mode 100644
index 0000000000000000000000000000000000000000..a5629a640d3e2ed8a3078a4638601861644f66c3
--- /dev/null
+++ b/houxiaodong/apps.py
@@ -0,0 +1,5 @@
+from django.apps import AppConfig
+
+
+class HouxiaodongConfig(AppConfig):
+ name = 'houxiaodong'
diff --git a/houxiaodong/migrations/__pycache__/__init__.cpython-35.pyc b/houxiaodong/migrations/__pycache__/__init__.cpython-35.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..8a84ee5fe1c45092a05dc7759ebf91edbb6aaf3b
Binary files /dev/null and b/houxiaodong/migrations/__pycache__/__init__.cpython-35.pyc differ
diff --git a/houxiaodong/migrations/__pycache__/__init__.cpython-36.pyc b/houxiaodong/migrations/__pycache__/__init__.cpython-36.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..743980644e66e7a595c3cdc2bd6710bfcde2f76f
Binary files /dev/null and b/houxiaodong/migrations/__pycache__/__init__.cpython-36.pyc differ
diff --git a/houxiaodong/models.py b/houxiaodong/models.py
new file mode 100644
index 0000000000000000000000000000000000000000..71a836239075aa6e6e4ecb700e9c42c95c022d91
--- /dev/null
+++ b/houxiaodong/models.py
@@ -0,0 +1,3 @@
+from django.db import models
+
+# Create your models here.
diff --git a/houxiaodong/tests.py b/houxiaodong/tests.py
new file mode 100644
index 0000000000000000000000000000000000000000..7ce503c2dd97ba78597f6ff6e4393132753573f6
--- /dev/null
+++ b/houxiaodong/tests.py
@@ -0,0 +1,3 @@
+from django.test import TestCase
+
+# Create your tests here.
diff --git a/houxiaodong/urls.py b/houxiaodong/urls.py
new file mode 100644
index 0000000000000000000000000000000000000000..59c78f8126662389fa231365964dfdcf54cf4ddb
--- /dev/null
+++ b/houxiaodong/urls.py
@@ -0,0 +1,7 @@
+from django.urls import path
+from houxiaodong import views
+
+app_name = 'hxd'
+urlpatterns = [
+ path('hxd/', views.hxd, name='hxd'),
+]
\ No newline at end of file
diff --git a/houxiaodong/views.py b/houxiaodong/views.py
new file mode 100644
index 0000000000000000000000000000000000000000..eb164c0882a85b0c6c3ef0961db37b1f76de73e7
--- /dev/null
+++ b/houxiaodong/views.py
@@ -0,0 +1,5 @@
+from django.shortcuts import render
+
+# Create your views here.
+def hxd(request):
+ return render(request, 'houxiaodong.html')
\ No newline at end of file
diff --git a/huoyanan/__init__.py b/huoyanan/__init__.py
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/huoyanan/__pycache__/__init__.cpython-36.pyc b/huoyanan/__pycache__/__init__.cpython-36.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..b7391a98b42efc327ce8e74f39e275210becab4e
Binary files /dev/null and b/huoyanan/__pycache__/__init__.cpython-36.pyc differ
diff --git a/huoyanan/__pycache__/__init__.cpython-37.pyc b/huoyanan/__pycache__/__init__.cpython-37.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..91f43937cf361449a36bfea5449047a7d12028a2
Binary files /dev/null and b/huoyanan/__pycache__/__init__.cpython-37.pyc differ
diff --git a/huoyanan/__pycache__/admin.cpython-36.pyc b/huoyanan/__pycache__/admin.cpython-36.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..ab7b86f9ad12f2b8a2c10aa41973bc668ff05b7c
Binary files /dev/null and b/huoyanan/__pycache__/admin.cpython-36.pyc differ
diff --git a/huoyanan/__pycache__/admin.cpython-37.pyc b/huoyanan/__pycache__/admin.cpython-37.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..1f9a10c99d3ab680e68c9ab203f04c104a44dbe9
Binary files /dev/null and b/huoyanan/__pycache__/admin.cpython-37.pyc differ
diff --git a/huoyanan/__pycache__/models.cpython-36.pyc b/huoyanan/__pycache__/models.cpython-36.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..13320ed715fb397ba570013bf557c814ddcc122f
Binary files /dev/null and b/huoyanan/__pycache__/models.cpython-36.pyc differ
diff --git a/huoyanan/__pycache__/models.cpython-37.pyc b/huoyanan/__pycache__/models.cpython-37.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..1063b6788e50805e21d6c542ac9c9358b56460e3
Binary files /dev/null and b/huoyanan/__pycache__/models.cpython-37.pyc differ
diff --git a/huoyanan/__pycache__/urls.cpython-36.pyc b/huoyanan/__pycache__/urls.cpython-36.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..5b5a5d9cd7994b86b1e9cff4c2accce529172440
Binary files /dev/null and b/huoyanan/__pycache__/urls.cpython-36.pyc differ
diff --git a/huoyanan/__pycache__/urls.cpython-37.pyc b/huoyanan/__pycache__/urls.cpython-37.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..87cd0370f330ba14129fea18f0d296129af4e405
Binary files /dev/null and b/huoyanan/__pycache__/urls.cpython-37.pyc differ
diff --git a/huoyanan/__pycache__/views.cpython-36.pyc b/huoyanan/__pycache__/views.cpython-36.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..d078161ecc22084eadfe213b12584950b8e80db1
Binary files /dev/null and b/huoyanan/__pycache__/views.cpython-36.pyc differ
diff --git a/huoyanan/__pycache__/views.cpython-37.pyc b/huoyanan/__pycache__/views.cpython-37.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..1c4ca5bce29a69d58705005cae8273af41a5e559
Binary files /dev/null and b/huoyanan/__pycache__/views.cpython-37.pyc differ
diff --git a/huoyanan/admin.py b/huoyanan/admin.py
new file mode 100644
index 0000000000000000000000000000000000000000..8c38f3f3dad51e4585f3984282c2a4bec5349c1e
--- /dev/null
+++ b/huoyanan/admin.py
@@ -0,0 +1,3 @@
+from django.contrib import admin
+
+# Register your models here.
diff --git a/huoyanan/apps.py b/huoyanan/apps.py
new file mode 100644
index 0000000000000000000000000000000000000000..3137ed263bb98c22677abd347d3ca3ad32b9c766
--- /dev/null
+++ b/huoyanan/apps.py
@@ -0,0 +1,5 @@
+from django.apps import AppConfig
+
+
+class HuoyananConfig(AppConfig):
+ name = 'huoyanan'
diff --git a/huoyanan/migrations/__init__.py b/huoyanan/migrations/__init__.py
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/huoyanan/migrations/__pycache__/__init__.cpython-36.pyc b/huoyanan/migrations/__pycache__/__init__.cpython-36.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..836e4e0eea0d289d8a09ebc4ff458f439153f130
Binary files /dev/null and b/huoyanan/migrations/__pycache__/__init__.cpython-36.pyc differ
diff --git a/huoyanan/migrations/__pycache__/__init__.cpython-37.pyc b/huoyanan/migrations/__pycache__/__init__.cpython-37.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..7fc46939fda1c4915856e518af278e8b814032e8
Binary files /dev/null and b/huoyanan/migrations/__pycache__/__init__.cpython-37.pyc differ
diff --git a/huoyanan/models.py b/huoyanan/models.py
new file mode 100644
index 0000000000000000000000000000000000000000..71a836239075aa6e6e4ecb700e9c42c95c022d91
--- /dev/null
+++ b/huoyanan/models.py
@@ -0,0 +1,3 @@
+from django.db import models
+
+# Create your models here.
diff --git a/huoyanan/tests.py b/huoyanan/tests.py
new file mode 100644
index 0000000000000000000000000000000000000000..7ce503c2dd97ba78597f6ff6e4393132753573f6
--- /dev/null
+++ b/huoyanan/tests.py
@@ -0,0 +1,3 @@
+from django.test import TestCase
+
+# Create your tests here.
diff --git a/huoyanan/urls.py b/huoyanan/urls.py
new file mode 100644
index 0000000000000000000000000000000000000000..baad73c9b11d741fa8b52d486c8d1d67244023a2
--- /dev/null
+++ b/huoyanan/urls.py
@@ -0,0 +1,7 @@
+from django.urls import path
+from huoyanan import views
+app_name ='huoyanan'
+urlpatterns=[
+ path("huoyanan/",views.huoyanan,name="huoyanan"),
+
+]
\ No newline at end of file
diff --git a/huoyanan/views.py b/huoyanan/views.py
new file mode 100644
index 0000000000000000000000000000000000000000..4ae8b2a1fb17ef4f15ed8f4907e64bed765c6438
--- /dev/null
+++ b/huoyanan/views.py
@@ -0,0 +1,5 @@
+from django.shortcuts import render
+
+# Create your views here
+def huoyanan(request):
+ return render(request,'huoyanan.html')
\ No newline at end of file
diff --git a/klq/__init__.py b/klq/__init__.py
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/klq/__pycache__/__init__.cpython-36.pyc b/klq/__pycache__/__init__.cpython-36.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..c9024dca182eff2a5cf1e6539c2d7a37c86b7711
Binary files /dev/null and b/klq/__pycache__/__init__.cpython-36.pyc differ
diff --git a/klq/__pycache__/__init__.cpython-37.pyc b/klq/__pycache__/__init__.cpython-37.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..9887d359a38737b4c97cac10d1cdc3950b16750d
Binary files /dev/null and b/klq/__pycache__/__init__.cpython-37.pyc differ
diff --git a/klq/__pycache__/admin.cpython-36.pyc b/klq/__pycache__/admin.cpython-36.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..009ddd5561e8846168b548f07256ae5f6a2c7dfc
Binary files /dev/null and b/klq/__pycache__/admin.cpython-36.pyc differ
diff --git a/klq/__pycache__/admin.cpython-37.pyc b/klq/__pycache__/admin.cpython-37.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..23828c09f6ecf14a8a43294e6e5cd5232c6a931f
Binary files /dev/null and b/klq/__pycache__/admin.cpython-37.pyc differ
diff --git a/klq/__pycache__/models.cpython-36.pyc b/klq/__pycache__/models.cpython-36.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..86869bb3a0e291571aad28420ba500167e2707bc
Binary files /dev/null and b/klq/__pycache__/models.cpython-36.pyc differ
diff --git a/klq/__pycache__/models.cpython-37.pyc b/klq/__pycache__/models.cpython-37.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..fb4a73eae92232816452c37e129cb5a9e10ffed9
Binary files /dev/null and b/klq/__pycache__/models.cpython-37.pyc differ
diff --git a/klq/__pycache__/urls.cpython-36.pyc b/klq/__pycache__/urls.cpython-36.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..9c7f21a09d97a5fe915ddc593c9994edd9867815
Binary files /dev/null and b/klq/__pycache__/urls.cpython-36.pyc differ
diff --git a/klq/__pycache__/urls.cpython-37.pyc b/klq/__pycache__/urls.cpython-37.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..37c1c86580cadca74f143a46cd6da94b85be5f3f
Binary files /dev/null and b/klq/__pycache__/urls.cpython-37.pyc differ
diff --git a/klq/__pycache__/views.cpython-36.pyc b/klq/__pycache__/views.cpython-36.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..a27073fd295e5621c33bbc031df64100da6c3c37
Binary files /dev/null and b/klq/__pycache__/views.cpython-36.pyc differ
diff --git a/klq/__pycache__/views.cpython-37.pyc b/klq/__pycache__/views.cpython-37.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..2b0eda656f289e0f91b1bccb7fb59fd8435e8692
Binary files /dev/null and b/klq/__pycache__/views.cpython-37.pyc differ
diff --git a/klq/admin.py b/klq/admin.py
new file mode 100644
index 0000000000000000000000000000000000000000..8c38f3f3dad51e4585f3984282c2a4bec5349c1e
--- /dev/null
+++ b/klq/admin.py
@@ -0,0 +1,3 @@
+from django.contrib import admin
+
+# Register your models here.
diff --git a/klq/apps.py b/klq/apps.py
new file mode 100644
index 0000000000000000000000000000000000000000..23c07aa6a059ed22bbfc9c914fd5f4242c37a95d
--- /dev/null
+++ b/klq/apps.py
@@ -0,0 +1,5 @@
+from django.apps import AppConfig
+
+
+class KlqConfig(AppConfig):
+ name = 'klq'
diff --git a/klq/migrations/__pycache__/__init__.cpython-35.pyc b/klq/migrations/__pycache__/__init__.cpython-35.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..bedf25d76a838193e4f8cf17b44d0f3244a4c4fe
Binary files /dev/null and b/klq/migrations/__pycache__/__init__.cpython-35.pyc differ
diff --git a/klq/migrations/__pycache__/__init__.cpython-36.pyc b/klq/migrations/__pycache__/__init__.cpython-36.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..b1e12625591e3caf8b585b990b6cf197f2011340
Binary files /dev/null and b/klq/migrations/__pycache__/__init__.cpython-36.pyc differ
diff --git a/klq/models.py b/klq/models.py
new file mode 100644
index 0000000000000000000000000000000000000000..71a836239075aa6e6e4ecb700e9c42c95c022d91
--- /dev/null
+++ b/klq/models.py
@@ -0,0 +1,3 @@
+from django.db import models
+
+# Create your models here.
diff --git a/klq/tests.py b/klq/tests.py
new file mode 100644
index 0000000000000000000000000000000000000000..7ce503c2dd97ba78597f6ff6e4393132753573f6
--- /dev/null
+++ b/klq/tests.py
@@ -0,0 +1,3 @@
+from django.test import TestCase
+
+# Create your tests here.
diff --git a/klq/urls.py b/klq/urls.py
new file mode 100644
index 0000000000000000000000000000000000000000..b7c098a3033f631088dc48126ab74288287066e5
--- /dev/null
+++ b/klq/urls.py
@@ -0,0 +1,8 @@
+from klq import views
+from django.urls import path, include
+
+app_name = 'klq'
+
+urlpatterns=[
+ path('klq/',views.klq,name='klq'),
+]
\ No newline at end of file
diff --git a/klq/views.py b/klq/views.py
new file mode 100644
index 0000000000000000000000000000000000000000..250b99b5695785a5d334d38c67ff69460078db62
--- /dev/null
+++ b/klq/views.py
@@ -0,0 +1,7 @@
+from django.shortcuts import render
+
+# Create your views here.
+
+
+def klq(request):
+ return render(request,'klq.html')
\ No newline at end of file
diff --git a/lilei/__init__.py b/lilei/__init__.py
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/lilei/__pycache__/__init__.cpython-36.pyc b/lilei/__pycache__/__init__.cpython-36.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..1581734aeade4fae2d6fde16ed045854e2b023ba
Binary files /dev/null and b/lilei/__pycache__/__init__.cpython-36.pyc differ
diff --git a/lilei/__pycache__/__init__.cpython-37.pyc b/lilei/__pycache__/__init__.cpython-37.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..46c4a998e35b1db3f4b7f848117e291f9f0d6e46
Binary files /dev/null and b/lilei/__pycache__/__init__.cpython-37.pyc differ
diff --git a/lilei/__pycache__/admin.cpython-36.pyc b/lilei/__pycache__/admin.cpython-36.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..168464db4a1b9b9d3f4f33700e3ebca61a52582d
Binary files /dev/null and b/lilei/__pycache__/admin.cpython-36.pyc differ
diff --git a/lilei/__pycache__/admin.cpython-37.pyc b/lilei/__pycache__/admin.cpython-37.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..5b9c90e33794514bf94dacd97ddb2944ea9c0a68
Binary files /dev/null and b/lilei/__pycache__/admin.cpython-37.pyc differ
diff --git a/lilei/__pycache__/models.cpython-36.pyc b/lilei/__pycache__/models.cpython-36.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..32bd92267c2f5efd6e17b50587eca5156f8281e1
Binary files /dev/null and b/lilei/__pycache__/models.cpython-36.pyc differ
diff --git a/lilei/__pycache__/models.cpython-37.pyc b/lilei/__pycache__/models.cpython-37.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..1933e2a63523496d4279bfebb7fcd006b01cf48c
Binary files /dev/null and b/lilei/__pycache__/models.cpython-37.pyc differ
diff --git a/lilei/__pycache__/urls.cpython-36.pyc b/lilei/__pycache__/urls.cpython-36.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..afb021c3d9a249b2b70df1c06705958473e965e9
Binary files /dev/null and b/lilei/__pycache__/urls.cpython-36.pyc differ
diff --git a/lilei/__pycache__/urls.cpython-37.pyc b/lilei/__pycache__/urls.cpython-37.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..307f3d2252be3af44d7851c777ab9797ab790f32
Binary files /dev/null and b/lilei/__pycache__/urls.cpython-37.pyc differ
diff --git a/lilei/__pycache__/views.cpython-36.pyc b/lilei/__pycache__/views.cpython-36.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..089a624983bc7c03d9e6c3245f62ce378a0a052e
Binary files /dev/null and b/lilei/__pycache__/views.cpython-36.pyc differ
diff --git a/lilei/__pycache__/views.cpython-37.pyc b/lilei/__pycache__/views.cpython-37.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..7196ea0f278f8a21d8458a2b59dcc6dd5eb0fce5
Binary files /dev/null and b/lilei/__pycache__/views.cpython-37.pyc differ
diff --git a/lilei/admin.py b/lilei/admin.py
new file mode 100644
index 0000000000000000000000000000000000000000..ea5d68b7c457cb7f92da9c00a5c4df77ace36cef
--- /dev/null
+++ b/lilei/admin.py
@@ -0,0 +1,3 @@
+from django.contrib import admin
+
+# Register your models here.
diff --git a/lilei/apps.py b/lilei/apps.py
new file mode 100644
index 0000000000000000000000000000000000000000..43dc67f7ed6c5b5158b76f02bdd2dc9a3ade60c2
--- /dev/null
+++ b/lilei/apps.py
@@ -0,0 +1,5 @@
+from django.apps import AppConfig
+
+
+class LileiConfig(AppConfig):
+ name = 'lilei'
diff --git a/lilei/migrations/__pycache__/__init__.cpython-35.pyc b/lilei/migrations/__pycache__/__init__.cpython-35.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..e1acdf6a990f09a3b7f996205f32be64fceb6814
Binary files /dev/null and b/lilei/migrations/__pycache__/__init__.cpython-35.pyc differ
diff --git a/lilei/migrations/__pycache__/__init__.cpython-36.pyc b/lilei/migrations/__pycache__/__init__.cpython-36.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..447721bae0b13e16712facb5595a5cb585f65816
Binary files /dev/null and b/lilei/migrations/__pycache__/__init__.cpython-36.pyc differ
diff --git a/lilei/models.py b/lilei/models.py
new file mode 100644
index 0000000000000000000000000000000000000000..fd18c6eac0dc9ffbdf025c31d136901350a0d9f2
--- /dev/null
+++ b/lilei/models.py
@@ -0,0 +1,3 @@
+from django.db import models
+
+# Create your models here.
diff --git a/lilei/tests.py b/lilei/tests.py
new file mode 100644
index 0000000000000000000000000000000000000000..de8bdc00eb2fed53494a534d48e400faa830dbd9
--- /dev/null
+++ b/lilei/tests.py
@@ -0,0 +1,3 @@
+from django.test import TestCase
+
+# Create your tests here.
diff --git a/lilei/urls.py b/lilei/urls.py
new file mode 100644
index 0000000000000000000000000000000000000000..09b27c92f10e348bbfb3fbcc044d0634ab435f7e
--- /dev/null
+++ b/lilei/urls.py
@@ -0,0 +1,8 @@
+from django.urls import path, include
+from . import views
+app_name='lilei'
+
+urlpatterns = [
+ path('',views.index,name='index'),
+ path('lilei/',views.lilei,name='lilei')
+]
\ No newline at end of file
diff --git a/lilei/views.py b/lilei/views.py
new file mode 100644
index 0000000000000000000000000000000000000000..f2bc455519405554a58517040819d981338f1416
--- /dev/null
+++ b/lilei/views.py
@@ -0,0 +1,8 @@
+from django.shortcuts import render
+
+# Create your views here.
+def index(request):
+ return render(request,'index.html')
+
+def lilei(request):
+ return render(request,'lilei.html')
\ No newline at end of file
diff --git a/lishan/__init__.py b/lishan/__init__.py
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/lishan/__pycache__/__init__.cpython-36.pyc b/lishan/__pycache__/__init__.cpython-36.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..946b30e7fb120fd200d57645381461c992df08e3
Binary files /dev/null and b/lishan/__pycache__/__init__.cpython-36.pyc differ
diff --git a/lishan/__pycache__/__init__.cpython-37.pyc b/lishan/__pycache__/__init__.cpython-37.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..f6bfc6afa13045bedac2e784fe7bd72afe0c8f84
Binary files /dev/null and b/lishan/__pycache__/__init__.cpython-37.pyc differ
diff --git a/lishan/__pycache__/admin.cpython-36.pyc b/lishan/__pycache__/admin.cpython-36.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..aac803a3b7c3f11cfc4febf4e90ca867e1b4cf27
Binary files /dev/null and b/lishan/__pycache__/admin.cpython-36.pyc differ
diff --git a/lishan/__pycache__/admin.cpython-37.pyc b/lishan/__pycache__/admin.cpython-37.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..7ab4eb5071b4d2af6af6559bed3aac6c8552f86b
Binary files /dev/null and b/lishan/__pycache__/admin.cpython-37.pyc differ
diff --git a/lishan/__pycache__/models.cpython-36.pyc b/lishan/__pycache__/models.cpython-36.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..61536f403c976cef67814aaece610f7c4f9f49f9
Binary files /dev/null and b/lishan/__pycache__/models.cpython-36.pyc differ
diff --git a/lishan/__pycache__/models.cpython-37.pyc b/lishan/__pycache__/models.cpython-37.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..a569a491051b0d8efd468c97e79337b9145d8fad
Binary files /dev/null and b/lishan/__pycache__/models.cpython-37.pyc differ
diff --git a/lishan/__pycache__/urls.cpython-36.pyc b/lishan/__pycache__/urls.cpython-36.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..62c9ba9e8cf310a2f8d5c238f9314da1b42f84f8
Binary files /dev/null and b/lishan/__pycache__/urls.cpython-36.pyc differ
diff --git a/lishan/__pycache__/urls.cpython-37.pyc b/lishan/__pycache__/urls.cpython-37.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..b60e681f5050d4317687e108c34f5582ea480b2d
Binary files /dev/null and b/lishan/__pycache__/urls.cpython-37.pyc differ
diff --git a/lishan/__pycache__/views.cpython-36.pyc b/lishan/__pycache__/views.cpython-36.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..ee8adc47c892c919255363b25eb9eb1c468c8280
Binary files /dev/null and b/lishan/__pycache__/views.cpython-36.pyc differ
diff --git a/lishan/__pycache__/views.cpython-37.pyc b/lishan/__pycache__/views.cpython-37.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..a793bb8ad3338a7fdd1a1ea5bd34624dcaabc663
Binary files /dev/null and b/lishan/__pycache__/views.cpython-37.pyc differ
diff --git a/lishan/admin.py b/lishan/admin.py
new file mode 100644
index 0000000000000000000000000000000000000000..8c38f3f3dad51e4585f3984282c2a4bec5349c1e
--- /dev/null
+++ b/lishan/admin.py
@@ -0,0 +1,3 @@
+from django.contrib import admin
+
+# Register your models here.
diff --git a/lishan/apps.py b/lishan/apps.py
new file mode 100644
index 0000000000000000000000000000000000000000..637f56a77cbe08f5b11f6e33ad0b34e409cf918e
--- /dev/null
+++ b/lishan/apps.py
@@ -0,0 +1,5 @@
+from django.apps import AppConfig
+
+
+class LishanConfig(AppConfig):
+ name = 'lishan'
diff --git a/lishan/migrations/__pycache__/__init__.cpython-35.pyc b/lishan/migrations/__pycache__/__init__.cpython-35.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..9f410f260e596526996bb12bc3c2b0ada778a9c3
Binary files /dev/null and b/lishan/migrations/__pycache__/__init__.cpython-35.pyc differ
diff --git a/lishan/migrations/__pycache__/__init__.cpython-36.pyc b/lishan/migrations/__pycache__/__init__.cpython-36.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..e2ebdcccd87f41250c7d00c8bb896487acb5f85e
Binary files /dev/null and b/lishan/migrations/__pycache__/__init__.cpython-36.pyc differ
diff --git a/lishan/models.py b/lishan/models.py
new file mode 100644
index 0000000000000000000000000000000000000000..71a836239075aa6e6e4ecb700e9c42c95c022d91
--- /dev/null
+++ b/lishan/models.py
@@ -0,0 +1,3 @@
+from django.db import models
+
+# Create your models here.
diff --git a/lishan/tests.py b/lishan/tests.py
new file mode 100644
index 0000000000000000000000000000000000000000..7ce503c2dd97ba78597f6ff6e4393132753573f6
--- /dev/null
+++ b/lishan/tests.py
@@ -0,0 +1,3 @@
+from django.test import TestCase
+
+# Create your tests here.
diff --git a/lishan/urls.py b/lishan/urls.py
new file mode 100644
index 0000000000000000000000000000000000000000..39eeb9fd7cb11d88367a7bdb0a44ef39a2309e6e
--- /dev/null
+++ b/lishan/urls.py
@@ -0,0 +1,8 @@
+from django.urls import path, include
+from . import views
+app_name='lishan'
+
+urlpatterns = [
+ path('',views.index,name='index'),
+ path('lishan/',views.lishan,name='lishan')
+]
\ No newline at end of file
diff --git a/lishan/views.py b/lishan/views.py
new file mode 100644
index 0000000000000000000000000000000000000000..9eb3adb8315199c07b84f2c567ffc769dfe1daf4
--- /dev/null
+++ b/lishan/views.py
@@ -0,0 +1,8 @@
+from django.shortcuts import render
+
+# Create your views here.
+def index(request):
+ return render(request,'index.html')
+
+def lishan(request):
+ return render(request,'lishan.html')
\ No newline at end of file
diff --git a/liyichao/__init__.py b/liyichao/__init__.py
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/liyichao/__pycache__/__init__.cpython-36.pyc b/liyichao/__pycache__/__init__.cpython-36.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..e86d5437bf1b55df424b3296a3fe8cabc73ccc3d
Binary files /dev/null and b/liyichao/__pycache__/__init__.cpython-36.pyc differ
diff --git a/liyichao/__pycache__/__init__.cpython-37.pyc b/liyichao/__pycache__/__init__.cpython-37.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..837e82e2d74c37f550e291dfb39e576b65642b48
Binary files /dev/null and b/liyichao/__pycache__/__init__.cpython-37.pyc differ
diff --git a/liyichao/__pycache__/admin.cpython-36.pyc b/liyichao/__pycache__/admin.cpython-36.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..efa75e25013108b1e02293d5db49cf913ba8c5a0
Binary files /dev/null and b/liyichao/__pycache__/admin.cpython-36.pyc differ
diff --git a/liyichao/__pycache__/admin.cpython-37.pyc b/liyichao/__pycache__/admin.cpython-37.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..47ff2dda7d20ecddc352f0c30518eda06e6effbc
Binary files /dev/null and b/liyichao/__pycache__/admin.cpython-37.pyc differ
diff --git a/liyichao/__pycache__/models.cpython-36.pyc b/liyichao/__pycache__/models.cpython-36.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..48017963606657e36b2b5e4e22be36806b8f59d9
Binary files /dev/null and b/liyichao/__pycache__/models.cpython-36.pyc differ
diff --git a/liyichao/__pycache__/models.cpython-37.pyc b/liyichao/__pycache__/models.cpython-37.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..91636aa3105abda22bdefb0a1ddcf6d36b7b78dd
Binary files /dev/null and b/liyichao/__pycache__/models.cpython-37.pyc differ
diff --git a/liyichao/__pycache__/urls.cpython-36.pyc b/liyichao/__pycache__/urls.cpython-36.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..d033d5ac5908cb5a0174431e7ef2cdb2842b946f
Binary files /dev/null and b/liyichao/__pycache__/urls.cpython-36.pyc differ
diff --git a/liyichao/__pycache__/urls.cpython-37.pyc b/liyichao/__pycache__/urls.cpython-37.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..fe7dcc58fb2fba914cad5541dcf82590ac142824
Binary files /dev/null and b/liyichao/__pycache__/urls.cpython-37.pyc differ
diff --git a/liyichao/__pycache__/views.cpython-36.pyc b/liyichao/__pycache__/views.cpython-36.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..7614a5d1f78338c113f5299f0f9494bd96279e24
Binary files /dev/null and b/liyichao/__pycache__/views.cpython-36.pyc differ
diff --git a/liyichao/__pycache__/views.cpython-37.pyc b/liyichao/__pycache__/views.cpython-37.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..993ea3a18ed215eb53bc60fa387bd77ec457b698
Binary files /dev/null and b/liyichao/__pycache__/views.cpython-37.pyc differ
diff --git a/liyichao/admin.py b/liyichao/admin.py
new file mode 100644
index 0000000000000000000000000000000000000000..8c38f3f3dad51e4585f3984282c2a4bec5349c1e
--- /dev/null
+++ b/liyichao/admin.py
@@ -0,0 +1,3 @@
+from django.contrib import admin
+
+# Register your models here.
diff --git a/liyichao/apps.py b/liyichao/apps.py
new file mode 100644
index 0000000000000000000000000000000000000000..ca5c4214bf9ad5d4b6b55a42c5ecf5c96789c423
--- /dev/null
+++ b/liyichao/apps.py
@@ -0,0 +1,5 @@
+from django.apps import AppConfig
+
+
+class LiyichaoConfig(AppConfig):
+ name = 'liyichao'
diff --git a/liyichao/migrations/__init__.py b/liyichao/migrations/__init__.py
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/liyichao/migrations/__pycache__/__init__.cpython-36.pyc b/liyichao/migrations/__pycache__/__init__.cpython-36.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..cbe88e66199978d15164810e17f72cd8bb14e31c
Binary files /dev/null and b/liyichao/migrations/__pycache__/__init__.cpython-36.pyc differ
diff --git a/liyichao/migrations/__pycache__/__init__.cpython-37.pyc b/liyichao/migrations/__pycache__/__init__.cpython-37.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..7b43755c1f997d843656d3ecbca17522747b2cb6
Binary files /dev/null and b/liyichao/migrations/__pycache__/__init__.cpython-37.pyc differ
diff --git a/liyichao/models.py b/liyichao/models.py
new file mode 100644
index 0000000000000000000000000000000000000000..71a836239075aa6e6e4ecb700e9c42c95c022d91
--- /dev/null
+++ b/liyichao/models.py
@@ -0,0 +1,3 @@
+from django.db import models
+
+# Create your models here.
diff --git a/liyichao/tests.py b/liyichao/tests.py
new file mode 100644
index 0000000000000000000000000000000000000000..7ce503c2dd97ba78597f6ff6e4393132753573f6
--- /dev/null
+++ b/liyichao/tests.py
@@ -0,0 +1,3 @@
+from django.test import TestCase
+
+# Create your tests here.
diff --git a/liyichao/urls.py b/liyichao/urls.py
new file mode 100644
index 0000000000000000000000000000000000000000..443e6a2ffde0a40d671e033360cfb96df6d28836
--- /dev/null
+++ b/liyichao/urls.py
@@ -0,0 +1,8 @@
+from django.urls import path, include
+from django.views.generic.base import TemplateView
+from . import views
+app_name='liyichao'
+urlpatterns = [
+ path('',views.index,name='index'),
+ path('liyichao/',views.liyichao,name='liyichao')
+]
diff --git a/liyichao/views.py b/liyichao/views.py
new file mode 100644
index 0000000000000000000000000000000000000000..3bc9c672f55177ab2b9ac1ae51abd7a229cb6c1b
--- /dev/null
+++ b/liyichao/views.py
@@ -0,0 +1,9 @@
+from django.shortcuts import render
+
+# Create your views here.
+def index(request):
+
+ return render(request,'index.html')
+
+def liyichao(request):
+ return render(request,'liyichao.html')
\ No newline at end of file
diff --git a/mazhen/__init__.py b/mazhen/__init__.py
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/mazhen/__pycache__/__init__.cpython-36.pyc b/mazhen/__pycache__/__init__.cpython-36.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..a33a45c1ee70d68926f842a7678e7f820efe4e34
Binary files /dev/null and b/mazhen/__pycache__/__init__.cpython-36.pyc differ
diff --git a/mazhen/__pycache__/__init__.cpython-37.pyc b/mazhen/__pycache__/__init__.cpython-37.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..460ab4bb0dfbc5a81e751f9cba329265662812b2
Binary files /dev/null and b/mazhen/__pycache__/__init__.cpython-37.pyc differ
diff --git a/mazhen/__pycache__/admin.cpython-36.pyc b/mazhen/__pycache__/admin.cpython-36.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..c09083524646e1e669f32fa0ff736531c571cf36
Binary files /dev/null and b/mazhen/__pycache__/admin.cpython-36.pyc differ
diff --git a/mazhen/__pycache__/admin.cpython-37.pyc b/mazhen/__pycache__/admin.cpython-37.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..24b2a1f6a5f1e1a02a506f27ba791497f886c750
Binary files /dev/null and b/mazhen/__pycache__/admin.cpython-37.pyc differ
diff --git a/mazhen/__pycache__/models.cpython-36.pyc b/mazhen/__pycache__/models.cpython-36.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..d75ba571befa6f78495a9af68e63ddb97d8355d5
Binary files /dev/null and b/mazhen/__pycache__/models.cpython-36.pyc differ
diff --git a/mazhen/__pycache__/models.cpython-37.pyc b/mazhen/__pycache__/models.cpython-37.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..c1bed25361b5d903c4b17bd5895dc6277277b1ad
Binary files /dev/null and b/mazhen/__pycache__/models.cpython-37.pyc differ
diff --git a/mazhen/__pycache__/urls.cpython-36.pyc b/mazhen/__pycache__/urls.cpython-36.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..36595be971ff443e196fbbdef90e8036f995e9bf
Binary files /dev/null and b/mazhen/__pycache__/urls.cpython-36.pyc differ
diff --git a/mazhen/__pycache__/urls.cpython-37.pyc b/mazhen/__pycache__/urls.cpython-37.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..374c4a64a2f350e9bde2dad7eaf546b24ce8b5c0
Binary files /dev/null and b/mazhen/__pycache__/urls.cpython-37.pyc differ
diff --git a/mazhen/__pycache__/views.cpython-36.pyc b/mazhen/__pycache__/views.cpython-36.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..4afd08236c8fc4258e9c82aed67f70852e616ce2
Binary files /dev/null and b/mazhen/__pycache__/views.cpython-36.pyc differ
diff --git a/mazhen/__pycache__/views.cpython-37.pyc b/mazhen/__pycache__/views.cpython-37.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..415f7bb4b6c76b8efd584437f037327f117c3c48
Binary files /dev/null and b/mazhen/__pycache__/views.cpython-37.pyc differ
diff --git a/mazhen/admin.py b/mazhen/admin.py
new file mode 100644
index 0000000000000000000000000000000000000000..8c38f3f3dad51e4585f3984282c2a4bec5349c1e
--- /dev/null
+++ b/mazhen/admin.py
@@ -0,0 +1,3 @@
+from django.contrib import admin
+
+# Register your models here.
diff --git a/mazhen/apps.py b/mazhen/apps.py
new file mode 100644
index 0000000000000000000000000000000000000000..9b32f9f25f2da72b11df5465fc9ccbb4c602b108
--- /dev/null
+++ b/mazhen/apps.py
@@ -0,0 +1,5 @@
+from django.apps import AppConfig
+
+
+class DusenConfig(AppConfig):
+ name = 'mazhen'
diff --git a/mazhen/migrations/__pycache__/__init__.cpython-35.pyc b/mazhen/migrations/__pycache__/__init__.cpython-35.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..62d6ada5edfc33d509577e4c510115d013f8b825
Binary files /dev/null and b/mazhen/migrations/__pycache__/__init__.cpython-35.pyc differ
diff --git a/mazhen/migrations/__pycache__/__init__.cpython-36.pyc b/mazhen/migrations/__pycache__/__init__.cpython-36.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..1fa826e49dd415bd6ecb3efcb44c6e549b6e58c4
Binary files /dev/null and b/mazhen/migrations/__pycache__/__init__.cpython-36.pyc differ
diff --git a/mazhen/models.py b/mazhen/models.py
new file mode 100644
index 0000000000000000000000000000000000000000..71a836239075aa6e6e4ecb700e9c42c95c022d91
--- /dev/null
+++ b/mazhen/models.py
@@ -0,0 +1,3 @@
+from django.db import models
+
+# Create your models here.
diff --git a/mazhen/tests.py b/mazhen/tests.py
new file mode 100644
index 0000000000000000000000000000000000000000..7ce503c2dd97ba78597f6ff6e4393132753573f6
--- /dev/null
+++ b/mazhen/tests.py
@@ -0,0 +1,3 @@
+from django.test import TestCase
+
+# Create your tests here.
diff --git a/mazhen/urls.py b/mazhen/urls.py
new file mode 100644
index 0000000000000000000000000000000000000000..3fb9926d8e4b3716c457fb98efacc88ce07e66f3
--- /dev/null
+++ b/mazhen/urls.py
@@ -0,0 +1,8 @@
+from django.urls import path, include
+from . import views
+app_name='mazhen'
+
+urlpatterns = [
+ path('',views.index,name='index'),
+ path('mazhen/',views.mazhen,name='mazhen')
+]
\ No newline at end of file
diff --git a/mazhen/views.py b/mazhen/views.py
new file mode 100644
index 0000000000000000000000000000000000000000..a9de13a6c689ca6aeeaec34a6af1d7b3a853d8de
--- /dev/null
+++ b/mazhen/views.py
@@ -0,0 +1,8 @@
+from django.shortcuts import render
+
+# Create your views here.
+def index(request):
+ return render(request,'index.html')
+
+def mazhen(request):
+ return render(request,'mazhen.html')
diff --git a/slq/__init__.py b/slq/__init__.py
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/slq/__pycache__/__init__.cpython-36.pyc b/slq/__pycache__/__init__.cpython-36.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..9b13d038f981a07cbcd2763d3917d639e071faf9
Binary files /dev/null and b/slq/__pycache__/__init__.cpython-36.pyc differ
diff --git a/slq/__pycache__/__init__.cpython-37.pyc b/slq/__pycache__/__init__.cpython-37.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..ac4f1a50689a08870a56ed1d0f4a82b99ef6a313
Binary files /dev/null and b/slq/__pycache__/__init__.cpython-37.pyc differ
diff --git a/slq/__pycache__/admin.cpython-36.pyc b/slq/__pycache__/admin.cpython-36.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..afaab0d0e08fbd6fe15ba936f310a2414e1346d3
Binary files /dev/null and b/slq/__pycache__/admin.cpython-36.pyc differ
diff --git a/slq/__pycache__/admin.cpython-37.pyc b/slq/__pycache__/admin.cpython-37.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..e8680e405eadbe081ffa7a8aad4374a1f34dcaaf
Binary files /dev/null and b/slq/__pycache__/admin.cpython-37.pyc differ
diff --git a/slq/__pycache__/models.cpython-36.pyc b/slq/__pycache__/models.cpython-36.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..40d3a41436cdbac9f59fe2a55c91ef88270a5e55
Binary files /dev/null and b/slq/__pycache__/models.cpython-36.pyc differ
diff --git a/slq/__pycache__/models.cpython-37.pyc b/slq/__pycache__/models.cpython-37.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..1105de67b79677de184de82108df92e6a98fccfe
Binary files /dev/null and b/slq/__pycache__/models.cpython-37.pyc differ
diff --git a/slq/__pycache__/urls.cpython-36.pyc b/slq/__pycache__/urls.cpython-36.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..ab7fb84db33a89b6b05591dcec364de9955bba95
Binary files /dev/null and b/slq/__pycache__/urls.cpython-36.pyc differ
diff --git a/slq/__pycache__/urls.cpython-37.pyc b/slq/__pycache__/urls.cpython-37.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..88ba20945e53f2f35335bbc10b0c3201f26f0957
Binary files /dev/null and b/slq/__pycache__/urls.cpython-37.pyc differ
diff --git a/slq/__pycache__/views.cpython-36.pyc b/slq/__pycache__/views.cpython-36.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..b23a060d591b8ae212f6866e15210cc36b2f70b3
Binary files /dev/null and b/slq/__pycache__/views.cpython-36.pyc differ
diff --git a/slq/__pycache__/views.cpython-37.pyc b/slq/__pycache__/views.cpython-37.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..aee352a6988a86a9c83d29b621059d526ed4e9be
Binary files /dev/null and b/slq/__pycache__/views.cpython-37.pyc differ
diff --git a/slq/admin.py b/slq/admin.py
new file mode 100644
index 0000000000000000000000000000000000000000..8c38f3f3dad51e4585f3984282c2a4bec5349c1e
--- /dev/null
+++ b/slq/admin.py
@@ -0,0 +1,3 @@
+from django.contrib import admin
+
+# Register your models here.
diff --git a/slq/apps.py b/slq/apps.py
new file mode 100644
index 0000000000000000000000000000000000000000..5f7407d6f6e596dcbf249c911845d9cf2cc4a475
--- /dev/null
+++ b/slq/apps.py
@@ -0,0 +1,5 @@
+from django.apps import AppConfig
+
+
+class SlqConfig(AppConfig):
+ name = 'slq'
diff --git a/slq/migrations/__init__.py b/slq/migrations/__init__.py
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/slq/migrations/__pycache__/__init__.cpython-36.pyc b/slq/migrations/__pycache__/__init__.cpython-36.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..974aedbf7eb829dd2bf6d693eebee7ab1af2b608
Binary files /dev/null and b/slq/migrations/__pycache__/__init__.cpython-36.pyc differ
diff --git a/slq/migrations/__pycache__/__init__.cpython-37.pyc b/slq/migrations/__pycache__/__init__.cpython-37.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..73cf7499fd52fbf0f1fc1f44e5d3f1d8f2e48570
Binary files /dev/null and b/slq/migrations/__pycache__/__init__.cpython-37.pyc differ
diff --git a/slq/models.py b/slq/models.py
new file mode 100644
index 0000000000000000000000000000000000000000..71a836239075aa6e6e4ecb700e9c42c95c022d91
--- /dev/null
+++ b/slq/models.py
@@ -0,0 +1,3 @@
+from django.db import models
+
+# Create your models here.
diff --git a/slq/tests.py b/slq/tests.py
new file mode 100644
index 0000000000000000000000000000000000000000..7ce503c2dd97ba78597f6ff6e4393132753573f6
--- /dev/null
+++ b/slq/tests.py
@@ -0,0 +1,3 @@
+from django.test import TestCase
+
+# Create your tests here.
diff --git a/slq/urls.py b/slq/urls.py
new file mode 100644
index 0000000000000000000000000000000000000000..7136be67d2c4d3d511acb6544119c6dff15321b3
--- /dev/null
+++ b/slq/urls.py
@@ -0,0 +1,7 @@
+from django.urls import path, include
+from . import views
+app_name='slq'
+
+urlpatterns = [
+ path('',views.slq,name='slq')
+]
\ No newline at end of file
diff --git a/slq/views.py b/slq/views.py
new file mode 100644
index 0000000000000000000000000000000000000000..e885f379952f01d3ad76c4b8ae3a1160fb8a2d3f
--- /dev/null
+++ b/slq/views.py
@@ -0,0 +1,6 @@
+from django.shortcuts import render
+
+
+# Create your views here.
+def slq(request):
+ return render(request, 'slq.html')
diff --git a/sxh/__init__.py b/sxh/__init__.py
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/sxh/__pycache__/__init__.cpython-36.pyc b/sxh/__pycache__/__init__.cpython-36.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..6e449f7de09fe83777cacc72b2e0bf338730afac
Binary files /dev/null and b/sxh/__pycache__/__init__.cpython-36.pyc differ
diff --git a/sxh/__pycache__/admin.cpython-36.pyc b/sxh/__pycache__/admin.cpython-36.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..12f738108d4d90ea22960041b39313f3a8d9177c
Binary files /dev/null and b/sxh/__pycache__/admin.cpython-36.pyc differ
diff --git a/sxh/__pycache__/models.cpython-36.pyc b/sxh/__pycache__/models.cpython-36.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..ddf4b5a10ac88bf476100664aca4bd06ab641fe5
Binary files /dev/null and b/sxh/__pycache__/models.cpython-36.pyc differ
diff --git a/sxh/__pycache__/urls.cpython-36.pyc b/sxh/__pycache__/urls.cpython-36.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..94f10e85338950688471d5d14ddeee401fc2f656
Binary files /dev/null and b/sxh/__pycache__/urls.cpython-36.pyc differ
diff --git a/sxh/__pycache__/views.cpython-36.pyc b/sxh/__pycache__/views.cpython-36.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..1ae06c15166c1e6b5cf1843718a8033f4d991083
Binary files /dev/null and b/sxh/__pycache__/views.cpython-36.pyc differ
diff --git a/sxh/admin.py b/sxh/admin.py
new file mode 100644
index 0000000000000000000000000000000000000000..8c38f3f3dad51e4585f3984282c2a4bec5349c1e
--- /dev/null
+++ b/sxh/admin.py
@@ -0,0 +1,3 @@
+from django.contrib import admin
+
+# Register your models here.
diff --git a/sxh/apps.py b/sxh/apps.py
new file mode 100644
index 0000000000000000000000000000000000000000..49ae469e48094d85cfa36cd674b8784d2ebd38d0
--- /dev/null
+++ b/sxh/apps.py
@@ -0,0 +1,5 @@
+from django.apps import AppConfig
+
+
+class SxhConfig(AppConfig):
+ name = 'sxh'
diff --git a/sxh/migrations/__init__.py b/sxh/migrations/__init__.py
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/sxh/migrations/__pycache__/__init__.cpython-36.pyc b/sxh/migrations/__pycache__/__init__.cpython-36.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..f3e4da4665db3f99b187b9a6c1976ad896c5b820
Binary files /dev/null and b/sxh/migrations/__pycache__/__init__.cpython-36.pyc differ
diff --git a/sxh/models.py b/sxh/models.py
new file mode 100644
index 0000000000000000000000000000000000000000..71a836239075aa6e6e4ecb700e9c42c95c022d91
--- /dev/null
+++ b/sxh/models.py
@@ -0,0 +1,3 @@
+from django.db import models
+
+# Create your models here.
diff --git a/sxh/tests.py b/sxh/tests.py
new file mode 100644
index 0000000000000000000000000000000000000000..7ce503c2dd97ba78597f6ff6e4393132753573f6
--- /dev/null
+++ b/sxh/tests.py
@@ -0,0 +1,3 @@
+from django.test import TestCase
+
+# Create your tests here.
diff --git a/sxh/urls.py b/sxh/urls.py
new file mode 100644
index 0000000000000000000000000000000000000000..97216b5358dfef6149121abdac4dc0bda794730b
--- /dev/null
+++ b/sxh/urls.py
@@ -0,0 +1,6 @@
+from django.urls import path
+from sxh import views
+app_name = 'sxh'
+urlpatterns = [
+ path("sxh/",views.sxh,name = 'sxh')
+]
\ No newline at end of file
diff --git a/sxh/views.py b/sxh/views.py
new file mode 100644
index 0000000000000000000000000000000000000000..1aeeea97639788cd175092d37ee96cb9551a42b9
--- /dev/null
+++ b/sxh/views.py
@@ -0,0 +1,5 @@
+from django.shortcuts import render
+
+# Create your views here.
+def sxh(request):
+ return render(request,'sxh.html')
\ No newline at end of file
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/fxy.html b/templates/fxy.html
new file mode 100644
index 0000000000000000000000000000000000000000..afeeb9961df64b4503e671bce1e60e5c92bc08c6
--- /dev/null
+++ b/templates/fxy.html
@@ -0,0 +1,10 @@
+
+
+
+
+ Title
+
+
+ 范向阳
+
+
\ No newline at end of file
diff --git a/templates/gonghongyi.html b/templates/gonghongyi.html
new file mode 100644
index 0000000000000000000000000000000000000000..28a1371e2bcba80e9684c543505aa35654a24e3a
--- /dev/null
+++ b/templates/gonghongyi.html
@@ -0,0 +1,10 @@
+
+
+
+
+ Title
+
+
+dffbgf
+
+
\ No newline at end of file
diff --git a/templates/guanliang.html b/templates/guanliang.html
new file mode 100644
index 0000000000000000000000000000000000000000..a83afb8e896d507073548d3f0c46ec5268c51a30
--- /dev/null
+++ b/templates/guanliang.html
@@ -0,0 +1,10 @@
+
+
+
+
+ Title
+
+
+关亮
+
+
\ No newline at end of file
diff --git a/templates/hbj.html b/templates/hbj.html
new file mode 100644
index 0000000000000000000000000000000000000000..ae40d1b4e552bf53bb21c5c2f3bd5a507291ba67
--- /dev/null
+++ b/templates/hbj.html
@@ -0,0 +1,10 @@
+
+
+
+
+ Title
+
+
+ 韩宾杰
+
+
\ No newline at end of file
diff --git a/templates/houjunjie.html b/templates/houjunjie.html
new file mode 100644
index 0000000000000000000000000000000000000000..8eb158db593e959a9cbc46d9dab946c6985ad10c
--- /dev/null
+++ b/templates/houjunjie.html
@@ -0,0 +1,10 @@
+
+
+
+
+ 侯俊杰
+
+
+侯俊杰
+
+
\ No newline at end of file
diff --git a/templates/houxiaodong.html b/templates/houxiaodong.html
new file mode 100644
index 0000000000000000000000000000000000000000..56f5d3377684aa8938fd6426243114e78a54acf5
--- /dev/null
+++ b/templates/houxiaodong.html
@@ -0,0 +1,10 @@
+
+
+
+
+ Title
+
+
+侯晓栋
+
+
\ No newline at end of file
diff --git a/templates/huoyanan.html b/templates/huoyanan.html
new file mode 100644
index 0000000000000000000000000000000000000000..f1ca3301f8e1fc97461199af05261e463bbeddd0
--- /dev/null
+++ b/templates/huoyanan.html
@@ -0,0 +1,10 @@
+
+
+
+
+ 霍
+
+
+霍亚楠
+
+
\ No newline at end of file
diff --git a/templates/index.html b/templates/index.html
index 34588fa33c3823615f7d5295a1875e5f3f91f73b..d8404f5e6b9f9b4ec0d5bf04396a79c47b5fd43c 100644
--- a/templates/index.html
+++ b/templates/index.html
@@ -7,8 +7,48 @@
1807C Git 测试项目
+
+
+ - 霍亚楠
+
+
+ - 孔令琪
+
+
+
+ - 韩宾杰
+
+
+ - 李艺超
+
+ - 范向阳
+
+ - 关亮
+ - 李磊
+
+ - 李姗
+
+ - sxh
+
+ - 张浩
+
+ - 吴双伟
+ - 侯晓栋
+
+
+ - 侯俊杰
+
+ - 王梦丽
+
+
+
+ - 侯俊杰
+
+ - 王梦丽
+
+ - guohongyi
@@ -24,12 +64,15 @@
+ - 马真
+ - 张瑞强
+ - 詹亚帅
@@ -46,13 +89,7 @@
-
-
-
-
-
-
-
+ - 杜森
diff --git a/templates/klq.html b/templates/klq.html
new file mode 100644
index 0000000000000000000000000000000000000000..7d78b7a9d0d142270e0adda39c27ab8a18be29e9
--- /dev/null
+++ b/templates/klq.html
@@ -0,0 +1,10 @@
+
+
+
+
+ Title
+
+
+孔令琪
+
+
\ No newline at end of file
diff --git a/templates/lilei.html b/templates/lilei.html
new file mode 100644
index 0000000000000000000000000000000000000000..f330eab0dac2d4e074b8f4eca0b34e792e18453f
--- /dev/null
+++ b/templates/lilei.html
@@ -0,0 +1,11 @@
+
+
+
+
+ Title
+
+
+李磊
+
+
+
\ No newline at end of file
diff --git a/templates/lishan.html b/templates/lishan.html
new file mode 100644
index 0000000000000000000000000000000000000000..65564201d3ba8adb3482726f0b81dca715dc7bc9
--- /dev/null
+++ b/templates/lishan.html
@@ -0,0 +1,10 @@
+
+
+
+
+ Title
+
+
+李姗
+
+
\ No newline at end of file
diff --git a/templates/liyichao.html b/templates/liyichao.html
new file mode 100644
index 0000000000000000000000000000000000000000..2a0e7f917635fdbdcb14aeebe790bbcec3d67bbd
--- /dev/null
+++ b/templates/liyichao.html
@@ -0,0 +1,10 @@
+
+
+
+
+ Title
+
+
+李艺超
+
+
\ No newline at end of file
diff --git a/templates/mazhen.html b/templates/mazhen.html
new file mode 100644
index 0000000000000000000000000000000000000000..e691f6be6166435ecf1bc5e68955a124e8d6072f
--- /dev/null
+++ b/templates/mazhen.html
@@ -0,0 +1,10 @@
+
+
+
+
+ zhanghao
+
+
+mazhen
+
+
\ No newline at end of file
diff --git a/templates/slq.html b/templates/slq.html
new file mode 100644
index 0000000000000000000000000000000000000000..b9ea8269822bc32a1a22fa29b89f98fc1df0a318
--- /dev/null
+++ b/templates/slq.html
@@ -0,0 +1,10 @@
+
+
+
+
+ Title
+
+
+cao nizui
+
+
\ No newline at end of file
diff --git a/templates/sxh.html b/templates/sxh.html
new file mode 100644
index 0000000000000000000000000000000000000000..f302c4de81951580a80f7ca596e042c9ac572942
--- /dev/null
+++ b/templates/sxh.html
@@ -0,0 +1,10 @@
+
+
+
+
+ H
+
+
+sxh
+
+
\ No newline at end of file
diff --git a/templates/wangmengli.html b/templates/wangmengli.html
new file mode 100644
index 0000000000000000000000000000000000000000..208edf790eb2ff010c00cd95c845eee055f978ed
--- /dev/null
+++ b/templates/wangmengli.html
@@ -0,0 +1,10 @@
+
+
+
+
+ Title
+
+
+王梦丽
+
+
\ No newline at end of file
diff --git a/templates/wsw.html b/templates/wsw.html
new file mode 100644
index 0000000000000000000000000000000000000000..59c4580d8978f95fb4a40aa4ed347669c4e24c69
--- /dev/null
+++ b/templates/wsw.html
@@ -0,0 +1,10 @@
+
+
+
+
+ Title
+
+
+吴双伟
+
+
\ No newline at end of file
diff --git a/templates/zhanghao.html b/templates/zhanghao.html
new file mode 100644
index 0000000000000000000000000000000000000000..f587479c74d020d4e4f63b3b15b427ef8d3320a1
--- /dev/null
+++ b/templates/zhanghao.html
@@ -0,0 +1,10 @@
+
+
+
+
+ zhanghao
+
+
+张浩
+
+
\ No newline at end of file
diff --git a/templates/zhanyashuai.html b/templates/zhanyashuai.html
new file mode 100644
index 0000000000000000000000000000000000000000..08ed428bc33ed446edeedbe212401232b92c216d
--- /dev/null
+++ b/templates/zhanyashuai.html
@@ -0,0 +1,10 @@
+
+
+
+
+ Title
+
+
+詹亚帅
+
+
\ No newline at end of file
diff --git a/templates/zrq.html b/templates/zrq.html
new file mode 100644
index 0000000000000000000000000000000000000000..1e9683f3f42ad4142127b84d91d4beda971e5634
--- /dev/null
+++ b/templates/zrq.html
@@ -0,0 +1,10 @@
+
+
+
+
+ Title
+
+
+张瑞强
+
+
\ No newline at end of file
diff --git a/wangmwngli/__init__.py b/wangmwngli/__init__.py
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/wangmwngli/__pycache__/__init__.cpython-36.pyc b/wangmwngli/__pycache__/__init__.cpython-36.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..95d2f9cc3b3f8b1296bb8df67d50e6fd5e9c585e
Binary files /dev/null and b/wangmwngli/__pycache__/__init__.cpython-36.pyc differ
diff --git a/wangmwngli/__pycache__/__init__.cpython-37.pyc b/wangmwngli/__pycache__/__init__.cpython-37.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..cc0c6b578f664c59636ebe386105e3d2004a7f6e
Binary files /dev/null and b/wangmwngli/__pycache__/__init__.cpython-37.pyc differ
diff --git a/wangmwngli/__pycache__/admin.cpython-36.pyc b/wangmwngli/__pycache__/admin.cpython-36.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..fc6fc45608bf9c69cd1b98b302a5112f0a7371fb
Binary files /dev/null and b/wangmwngli/__pycache__/admin.cpython-36.pyc differ
diff --git a/wangmwngli/__pycache__/admin.cpython-37.pyc b/wangmwngli/__pycache__/admin.cpython-37.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..a86171687f60e6330f721d074fe10abac8e9562c
Binary files /dev/null and b/wangmwngli/__pycache__/admin.cpython-37.pyc differ
diff --git a/wangmwngli/__pycache__/models.cpython-36.pyc b/wangmwngli/__pycache__/models.cpython-36.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..6c849c739514cc40999424901342c4245d2df33a
Binary files /dev/null and b/wangmwngli/__pycache__/models.cpython-36.pyc differ
diff --git a/wangmwngli/__pycache__/models.cpython-37.pyc b/wangmwngli/__pycache__/models.cpython-37.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..12a0d655f1701dcc20902b80b842068c62d700c0
Binary files /dev/null and b/wangmwngli/__pycache__/models.cpython-37.pyc differ
diff --git a/wangmwngli/__pycache__/urls.cpython-36.pyc b/wangmwngli/__pycache__/urls.cpython-36.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..b567a259ab4f35be4fd838f24aa9db03a6d3dd4c
Binary files /dev/null and b/wangmwngli/__pycache__/urls.cpython-36.pyc differ
diff --git a/wangmwngli/__pycache__/urls.cpython-37.pyc b/wangmwngli/__pycache__/urls.cpython-37.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..4bce38dbb00a6cd434fcdf3948d1c9cb18226246
Binary files /dev/null and b/wangmwngli/__pycache__/urls.cpython-37.pyc differ
diff --git a/wangmwngli/__pycache__/views.cpython-36.pyc b/wangmwngli/__pycache__/views.cpython-36.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..4c6c9236671d8b03c21224475e3fd57538485db0
Binary files /dev/null and b/wangmwngli/__pycache__/views.cpython-36.pyc differ
diff --git a/wangmwngli/__pycache__/views.cpython-37.pyc b/wangmwngli/__pycache__/views.cpython-37.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..1c556294cd0f557d8e15507e26c140ba0f33c6eb
Binary files /dev/null and b/wangmwngli/__pycache__/views.cpython-37.pyc differ
diff --git a/wangmwngli/admin.py b/wangmwngli/admin.py
new file mode 100644
index 0000000000000000000000000000000000000000..8c38f3f3dad51e4585f3984282c2a4bec5349c1e
--- /dev/null
+++ b/wangmwngli/admin.py
@@ -0,0 +1,3 @@
+from django.contrib import admin
+
+# Register your models here.
diff --git a/wangmwngli/apps.py b/wangmwngli/apps.py
new file mode 100644
index 0000000000000000000000000000000000000000..3151c8c5b4ebc9fea4d03d3dca2c293ec23d32f4
--- /dev/null
+++ b/wangmwngli/apps.py
@@ -0,0 +1,5 @@
+from django.apps import AppConfig
+
+
+class WangmwngliConfig(AppConfig):
+ name = 'wangmwngli'
diff --git a/wangmwngli/migrations/__pycache__/__init__.cpython-35.pyc b/wangmwngli/migrations/__pycache__/__init__.cpython-35.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..7c1be681444cba8423f373e000bc620a45f3e624
Binary files /dev/null and b/wangmwngli/migrations/__pycache__/__init__.cpython-35.pyc differ
diff --git a/wangmwngli/migrations/__pycache__/__init__.cpython-36.pyc b/wangmwngli/migrations/__pycache__/__init__.cpython-36.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..ebae04631f7adc87c4881b9f75a22e276734765a
Binary files /dev/null and b/wangmwngli/migrations/__pycache__/__init__.cpython-36.pyc differ
diff --git a/wangmwngli/models.py b/wangmwngli/models.py
new file mode 100644
index 0000000000000000000000000000000000000000..71a836239075aa6e6e4ecb700e9c42c95c022d91
--- /dev/null
+++ b/wangmwngli/models.py
@@ -0,0 +1,3 @@
+from django.db import models
+
+# Create your models here.
diff --git a/wangmwngli/tests.py b/wangmwngli/tests.py
new file mode 100644
index 0000000000000000000000000000000000000000..7ce503c2dd97ba78597f6ff6e4393132753573f6
--- /dev/null
+++ b/wangmwngli/tests.py
@@ -0,0 +1,3 @@
+from django.test import TestCase
+
+# Create your tests here.
diff --git a/wangmwngli/urls.py b/wangmwngli/urls.py
new file mode 100644
index 0000000000000000000000000000000000000000..73662163626355d685f63db1b9d3989ef16f4c7e
--- /dev/null
+++ b/wangmwngli/urls.py
@@ -0,0 +1,8 @@
+#__auter:王梦丽
+from django.urls import path
+from wangmwngli import views
+
+app_name = 'wangmengli'
+urlpatterns = [
+ path('wangmengli/', views.index, name='wangmengli')
+]
\ No newline at end of file
diff --git a/wangmwngli/views.py b/wangmwngli/views.py
new file mode 100644
index 0000000000000000000000000000000000000000..670fb3d30bd2d2102cbf40d160fbe9b03f1f3440
--- /dev/null
+++ b/wangmwngli/views.py
@@ -0,0 +1,5 @@
+from django.shortcuts import render
+
+# Create your views here.
+def index(request):
+ return render(request, 'wangmengli.html')
\ No newline at end of file
diff --git a/wsw/__init__.py b/wsw/__init__.py
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/wsw/__pycache__/__init__.cpython-36.pyc b/wsw/__pycache__/__init__.cpython-36.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..445d53ad21f395777827943f727e6fdacb4577ea
Binary files /dev/null and b/wsw/__pycache__/__init__.cpython-36.pyc differ
diff --git a/wsw/__pycache__/__init__.cpython-37.pyc b/wsw/__pycache__/__init__.cpython-37.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..2455b4924730c8f02c695ecdcf2d8b04f52c272c
Binary files /dev/null and b/wsw/__pycache__/__init__.cpython-37.pyc differ
diff --git a/wsw/__pycache__/admin.cpython-36.pyc b/wsw/__pycache__/admin.cpython-36.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..cded9bf5d39e230b9d990e7f43af7c8db94e5c05
Binary files /dev/null and b/wsw/__pycache__/admin.cpython-36.pyc differ
diff --git a/wsw/__pycache__/admin.cpython-37.pyc b/wsw/__pycache__/admin.cpython-37.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..38c3c96dab127a73cf5376f51bd61af300fab862
Binary files /dev/null and b/wsw/__pycache__/admin.cpython-37.pyc differ
diff --git a/wsw/__pycache__/models.cpython-36.pyc b/wsw/__pycache__/models.cpython-36.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..59b4f49203bea8a29de87a91ef7e45912ae78eea
Binary files /dev/null and b/wsw/__pycache__/models.cpython-36.pyc differ
diff --git a/wsw/__pycache__/models.cpython-37.pyc b/wsw/__pycache__/models.cpython-37.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..3dabe6fc70aa262ce026e0f3e023bf5ce76bb969
Binary files /dev/null and b/wsw/__pycache__/models.cpython-37.pyc differ
diff --git a/wsw/__pycache__/urls.cpython-36.pyc b/wsw/__pycache__/urls.cpython-36.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..495376c61f1ec881e08ae64fcbfd2b7473cdfb50
Binary files /dev/null and b/wsw/__pycache__/urls.cpython-36.pyc differ
diff --git a/wsw/__pycache__/urls.cpython-37.pyc b/wsw/__pycache__/urls.cpython-37.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..4810c331688590601728a1dfc72462151641bfbb
Binary files /dev/null and b/wsw/__pycache__/urls.cpython-37.pyc differ
diff --git a/wsw/__pycache__/views.cpython-36.pyc b/wsw/__pycache__/views.cpython-36.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..4ef2539c0780f653fc64d9eef02428293ab17bc8
Binary files /dev/null and b/wsw/__pycache__/views.cpython-36.pyc differ
diff --git a/wsw/__pycache__/views.cpython-37.pyc b/wsw/__pycache__/views.cpython-37.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..6037ecdadd1235aaca23e11fa692d36db2e3ea9d
Binary files /dev/null and b/wsw/__pycache__/views.cpython-37.pyc differ
diff --git a/wsw/admin.py b/wsw/admin.py
new file mode 100644
index 0000000000000000000000000000000000000000..8c38f3f3dad51e4585f3984282c2a4bec5349c1e
--- /dev/null
+++ b/wsw/admin.py
@@ -0,0 +1,3 @@
+from django.contrib import admin
+
+# Register your models here.
diff --git a/wsw/apps.py b/wsw/apps.py
new file mode 100644
index 0000000000000000000000000000000000000000..a6f271168e4f613dca2b863f08cde3ad136296db
--- /dev/null
+++ b/wsw/apps.py
@@ -0,0 +1,5 @@
+from django.apps import AppConfig
+
+
+class WswConfig(AppConfig):
+ name = 'wsw'
diff --git a/wsw/migrations/__pycache__/__init__.cpython-35.pyc b/wsw/migrations/__pycache__/__init__.cpython-35.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..11e9d0b24ddeb946657c26bbc09bfa6ce742aeef
Binary files /dev/null and b/wsw/migrations/__pycache__/__init__.cpython-35.pyc differ
diff --git a/wsw/migrations/__pycache__/__init__.cpython-36.pyc b/wsw/migrations/__pycache__/__init__.cpython-36.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..d07ae9e0edc9fe45f5afa72b458abf9e38be17ed
Binary files /dev/null and b/wsw/migrations/__pycache__/__init__.cpython-36.pyc differ
diff --git a/wsw/models.py b/wsw/models.py
new file mode 100644
index 0000000000000000000000000000000000000000..71a836239075aa6e6e4ecb700e9c42c95c022d91
--- /dev/null
+++ b/wsw/models.py
@@ -0,0 +1,3 @@
+from django.db import models
+
+# Create your models here.
diff --git a/wsw/tests.py b/wsw/tests.py
new file mode 100644
index 0000000000000000000000000000000000000000..7ce503c2dd97ba78597f6ff6e4393132753573f6
--- /dev/null
+++ b/wsw/tests.py
@@ -0,0 +1,3 @@
+from django.test import TestCase
+
+# Create your tests here.
diff --git a/wsw/urls.py b/wsw/urls.py
new file mode 100644
index 0000000000000000000000000000000000000000..ba5fe39f786924bf344c1fbd8e8527c99243fa33
--- /dev/null
+++ b/wsw/urls.py
@@ -0,0 +1,10 @@
+from django.urls import path, include
+from django.views.generic.base import TemplateView
+from wsw import views
+
+app_name = 'wsw'
+
+urlpatterns = [
+ path('',views.index,name='index'),
+ path('wsw/',views.index2,name='wsw'),
+]
diff --git a/wsw/views.py b/wsw/views.py
new file mode 100644
index 0000000000000000000000000000000000000000..c48dd22660d94185d37e5004bdce4354efc73b6b
--- /dev/null
+++ b/wsw/views.py
@@ -0,0 +1,9 @@
+from django.shortcuts import render
+
+# Create your views here.
+
+def index(request):
+ return render(request,'index.html')
+
+def index2(request):
+ return render(request,'wsw.html')
diff --git a/zhanghao/__init__.py b/zhanghao/__init__.py
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/zhanghao/__pycache__/__init__.cpython-36.pyc b/zhanghao/__pycache__/__init__.cpython-36.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..239ece82218d759afb27cf9413e8bda3131ac58d
Binary files /dev/null and b/zhanghao/__pycache__/__init__.cpython-36.pyc differ
diff --git a/zhanghao/__pycache__/__init__.cpython-37.pyc b/zhanghao/__pycache__/__init__.cpython-37.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..aa1e26de776fbffa4973421f82e8c9f8bafba169
Binary files /dev/null and b/zhanghao/__pycache__/__init__.cpython-37.pyc differ
diff --git a/zhanghao/__pycache__/admin.cpython-36.pyc b/zhanghao/__pycache__/admin.cpython-36.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..8bc23dcf28448eba3a7538d1bbd311d5df2b5783
Binary files /dev/null and b/zhanghao/__pycache__/admin.cpython-36.pyc differ
diff --git a/zhanghao/__pycache__/admin.cpython-37.pyc b/zhanghao/__pycache__/admin.cpython-37.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..c49aec4cd2ff9d7923e432a7c02711645047acb6
Binary files /dev/null and b/zhanghao/__pycache__/admin.cpython-37.pyc differ
diff --git a/zhanghao/__pycache__/models.cpython-36.pyc b/zhanghao/__pycache__/models.cpython-36.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..f02be579a43551ce0df850fbf03c553058549bfa
Binary files /dev/null and b/zhanghao/__pycache__/models.cpython-36.pyc differ
diff --git a/zhanghao/__pycache__/models.cpython-37.pyc b/zhanghao/__pycache__/models.cpython-37.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..d5239033691192515cf12dcc41fb5455fda66b1c
Binary files /dev/null and b/zhanghao/__pycache__/models.cpython-37.pyc differ
diff --git a/zhanghao/__pycache__/urls.cpython-36.pyc b/zhanghao/__pycache__/urls.cpython-36.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..2042cb8734d14319e86e55141c97135862a3d5e9
Binary files /dev/null and b/zhanghao/__pycache__/urls.cpython-36.pyc differ
diff --git a/zhanghao/__pycache__/urls.cpython-37.pyc b/zhanghao/__pycache__/urls.cpython-37.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..d4e5492b24e0b50c834720ef7fc8f4ff50b4db94
Binary files /dev/null and b/zhanghao/__pycache__/urls.cpython-37.pyc differ
diff --git a/zhanghao/__pycache__/views.cpython-36.pyc b/zhanghao/__pycache__/views.cpython-36.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..5429f3663b122175b5054aea1ec953e4c4c57abd
Binary files /dev/null and b/zhanghao/__pycache__/views.cpython-36.pyc differ
diff --git a/zhanghao/__pycache__/views.cpython-37.pyc b/zhanghao/__pycache__/views.cpython-37.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..dd22e4f5620b3f83a12f590d609453b552d4bbd1
Binary files /dev/null and b/zhanghao/__pycache__/views.cpython-37.pyc differ
diff --git a/zhanghao/admin.py b/zhanghao/admin.py
new file mode 100644
index 0000000000000000000000000000000000000000..8c38f3f3dad51e4585f3984282c2a4bec5349c1e
--- /dev/null
+++ b/zhanghao/admin.py
@@ -0,0 +1,3 @@
+from django.contrib import admin
+
+# Register your models here.
diff --git a/zhanghao/apps.py b/zhanghao/apps.py
new file mode 100644
index 0000000000000000000000000000000000000000..89d7ca8b9147f84381f9160874ba1c7b0a3ad212
--- /dev/null
+++ b/zhanghao/apps.py
@@ -0,0 +1,5 @@
+from django.apps import AppConfig
+
+
+class ZhanghaoConfig(AppConfig):
+ name = 'zhanghao'
diff --git a/zhanghao/migrations/__pycache__/__init__.cpython-35.pyc b/zhanghao/migrations/__pycache__/__init__.cpython-35.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..3182d05ced0bad790b732875bfe0189168b668ac
Binary files /dev/null and b/zhanghao/migrations/__pycache__/__init__.cpython-35.pyc differ
diff --git a/zhanghao/migrations/__pycache__/__init__.cpython-36.pyc b/zhanghao/migrations/__pycache__/__init__.cpython-36.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..ffb87b0b0487bd39cbbaefa3bd0a8fa42a733694
Binary files /dev/null and b/zhanghao/migrations/__pycache__/__init__.cpython-36.pyc differ
diff --git a/zhanghao/models.py b/zhanghao/models.py
new file mode 100644
index 0000000000000000000000000000000000000000..71a836239075aa6e6e4ecb700e9c42c95c022d91
--- /dev/null
+++ b/zhanghao/models.py
@@ -0,0 +1,3 @@
+from django.db import models
+
+# Create your models here.
diff --git a/zhanghao/tests.py b/zhanghao/tests.py
new file mode 100644
index 0000000000000000000000000000000000000000..7ce503c2dd97ba78597f6ff6e4393132753573f6
--- /dev/null
+++ b/zhanghao/tests.py
@@ -0,0 +1,3 @@
+from django.test import TestCase
+
+# Create your tests here.
diff --git a/zhanghao/urls.py b/zhanghao/urls.py
new file mode 100644
index 0000000000000000000000000000000000000000..399c79f94e694e99e519b7ca8c0979fd487e2837
--- /dev/null
+++ b/zhanghao/urls.py
@@ -0,0 +1,8 @@
+from django.urls import path
+#rom guanliangliang import views
+from zhanghao import views
+app_name = 'zhanghao'
+
+urlpatterns = [
+ path('zhanghao/', views.zhanghao, name='zhanghao')
+]
\ No newline at end of file
diff --git a/zhanghao/views.py b/zhanghao/views.py
new file mode 100644
index 0000000000000000000000000000000000000000..2f087ff6e993c521f9ebc9b41ec7153d408c3f6f
--- /dev/null
+++ b/zhanghao/views.py
@@ -0,0 +1,5 @@
+from django.shortcuts import render,HttpResponse
+
+# Create your views here.
+def zhanghao(request):
+ return render(request,'zhanghao.html')
\ No newline at end of file
diff --git a/zhangruiqiang/__init__.py b/zhangruiqiang/__init__.py
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/zhangruiqiang/__pycache__/__init__.cpython-36.pyc b/zhangruiqiang/__pycache__/__init__.cpython-36.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..e4cf414eb7c7bf512c8c2181696d6045300d7781
Binary files /dev/null and b/zhangruiqiang/__pycache__/__init__.cpython-36.pyc differ
diff --git a/zhangruiqiang/__pycache__/__init__.cpython-37.pyc b/zhangruiqiang/__pycache__/__init__.cpython-37.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..8ef66e34ae60393ea7dfb65670183d617d577a61
Binary files /dev/null and b/zhangruiqiang/__pycache__/__init__.cpython-37.pyc differ
diff --git a/zhangruiqiang/__pycache__/admin.cpython-36.pyc b/zhangruiqiang/__pycache__/admin.cpython-36.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..69a5e9486f71ce1d9c421a5b7d23ab89a4406546
Binary files /dev/null and b/zhangruiqiang/__pycache__/admin.cpython-36.pyc differ
diff --git a/zhangruiqiang/__pycache__/admin.cpython-37.pyc b/zhangruiqiang/__pycache__/admin.cpython-37.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..2ad049379e8e61f58a89a82388dcc3e33ca75468
Binary files /dev/null and b/zhangruiqiang/__pycache__/admin.cpython-37.pyc differ
diff --git a/zhangruiqiang/__pycache__/models.cpython-36.pyc b/zhangruiqiang/__pycache__/models.cpython-36.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..93c7703d9ad555a0b446a1e5c6f943ac434c20d9
Binary files /dev/null and b/zhangruiqiang/__pycache__/models.cpython-36.pyc differ
diff --git a/zhangruiqiang/__pycache__/models.cpython-37.pyc b/zhangruiqiang/__pycache__/models.cpython-37.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..681df65adfab26f31f0fe7a1857d227e066bc38f
Binary files /dev/null and b/zhangruiqiang/__pycache__/models.cpython-37.pyc differ
diff --git a/zhangruiqiang/__pycache__/urls.cpython-36.pyc b/zhangruiqiang/__pycache__/urls.cpython-36.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..a0f82bfd60f1c717efd8c8d6d1c899adc7d7c658
Binary files /dev/null and b/zhangruiqiang/__pycache__/urls.cpython-36.pyc differ
diff --git a/zhangruiqiang/__pycache__/urls.cpython-37.pyc b/zhangruiqiang/__pycache__/urls.cpython-37.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..74222e85ff15fa91b7194e0f78ecac265b4a61ef
Binary files /dev/null and b/zhangruiqiang/__pycache__/urls.cpython-37.pyc differ
diff --git a/zhangruiqiang/__pycache__/views.cpython-36.pyc b/zhangruiqiang/__pycache__/views.cpython-36.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..b4e03c9ea94468813e06779011557d1c3a5c2c62
Binary files /dev/null and b/zhangruiqiang/__pycache__/views.cpython-36.pyc differ
diff --git a/zhangruiqiang/__pycache__/views.cpython-37.pyc b/zhangruiqiang/__pycache__/views.cpython-37.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..0d7280378a1387fa022493ae33e2eb51bf9d0a8d
Binary files /dev/null and b/zhangruiqiang/__pycache__/views.cpython-37.pyc differ
diff --git a/zhangruiqiang/admin.py b/zhangruiqiang/admin.py
new file mode 100644
index 0000000000000000000000000000000000000000..8c38f3f3dad51e4585f3984282c2a4bec5349c1e
--- /dev/null
+++ b/zhangruiqiang/admin.py
@@ -0,0 +1,3 @@
+from django.contrib import admin
+
+# Register your models here.
diff --git a/zhangruiqiang/apps.py b/zhangruiqiang/apps.py
new file mode 100644
index 0000000000000000000000000000000000000000..aca2b39217eee5d83f0e184ff1d350edef016ca5
--- /dev/null
+++ b/zhangruiqiang/apps.py
@@ -0,0 +1,5 @@
+from django.apps import AppConfig
+
+
+class ZhangruiqiangConfig(AppConfig):
+ name = 'zhangruiqiang'
diff --git a/zhangruiqiang/migrations/__init__.py b/zhangruiqiang/migrations/__init__.py
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/zhangruiqiang/migrations/__pycache__/__init__.cpython-35.pyc b/zhangruiqiang/migrations/__pycache__/__init__.cpython-35.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..afa862836ad514e25fdb69639aa3768e0f1c45ac
Binary files /dev/null and b/zhangruiqiang/migrations/__pycache__/__init__.cpython-35.pyc differ
diff --git a/zhangruiqiang/migrations/__pycache__/__init__.cpython-36.pyc b/zhangruiqiang/migrations/__pycache__/__init__.cpython-36.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..f038d3e274c585570ad95b2dbfb469bea73e3a10
Binary files /dev/null and b/zhangruiqiang/migrations/__pycache__/__init__.cpython-36.pyc differ
diff --git a/zhangruiqiang/migrations/__pycache__/__init__.cpython-37.pyc b/zhangruiqiang/migrations/__pycache__/__init__.cpython-37.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..d50a93ae9a11df68cecf1397d0b56415c6617976
Binary files /dev/null and b/zhangruiqiang/migrations/__pycache__/__init__.cpython-37.pyc differ
diff --git a/zhangruiqiang/models.py b/zhangruiqiang/models.py
new file mode 100644
index 0000000000000000000000000000000000000000..71a836239075aa6e6e4ecb700e9c42c95c022d91
--- /dev/null
+++ b/zhangruiqiang/models.py
@@ -0,0 +1,3 @@
+from django.db import models
+
+# Create your models here.
diff --git a/zhangruiqiang/tests.py b/zhangruiqiang/tests.py
new file mode 100644
index 0000000000000000000000000000000000000000..7ce503c2dd97ba78597f6ff6e4393132753573f6
--- /dev/null
+++ b/zhangruiqiang/tests.py
@@ -0,0 +1,3 @@
+from django.test import TestCase
+
+# Create your tests here.
diff --git a/zhangruiqiang/urls.py b/zhangruiqiang/urls.py
new file mode 100644
index 0000000000000000000000000000000000000000..5efa92c85989245121ff52d3d0ed7a530f1e6832
--- /dev/null
+++ b/zhangruiqiang/urls.py
@@ -0,0 +1,12 @@
+from django.urls import path
+
+from zhangruiqiang import views
+
+app_name='zhangruiqiang'
+
+
+
+urlpatterns = [
+
+ path('zhangruiqiang/',views.index,name='zhangruiqiang')
+]
diff --git a/zhangruiqiang/views.py b/zhangruiqiang/views.py
new file mode 100644
index 0000000000000000000000000000000000000000..3087e2607fee22251e20a01477e26fada0f7d59d
--- /dev/null
+++ b/zhangruiqiang/views.py
@@ -0,0 +1,5 @@
+from django.shortcuts import render
+
+# Create your views here.
+def index(request):
+ return render(request, 'zrq.html')
\ No newline at end of file
diff --git a/zhanyashuai/__init__.py b/zhanyashuai/__init__.py
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/zhanyashuai/admin.py b/zhanyashuai/admin.py
new file mode 100644
index 0000000000000000000000000000000000000000..8c38f3f3dad51e4585f3984282c2a4bec5349c1e
--- /dev/null
+++ b/zhanyashuai/admin.py
@@ -0,0 +1,3 @@
+from django.contrib import admin
+
+# Register your models here.
diff --git a/zhanyashuai/apps.py b/zhanyashuai/apps.py
new file mode 100644
index 0000000000000000000000000000000000000000..072a9c7db1b1b8b6d37c79e2d9bf776a54a88e5a
--- /dev/null
+++ b/zhanyashuai/apps.py
@@ -0,0 +1,5 @@
+from django.apps import AppConfig
+
+
+class ZhanyashuaiConfig(AppConfig):
+ name = 'zhanyashuai'
diff --git a/zhanyashuai/migrations/__init__.py b/zhanyashuai/migrations/__init__.py
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/zhanyashuai/migrations/__pycache__/__init__.cpython-36.pyc b/zhanyashuai/migrations/__pycache__/__init__.cpython-36.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..75f9fa5ccf053370d8d8c5e1d36110a786f8e6a1
Binary files /dev/null and b/zhanyashuai/migrations/__pycache__/__init__.cpython-36.pyc differ
diff --git a/zhanyashuai/models.py b/zhanyashuai/models.py
new file mode 100644
index 0000000000000000000000000000000000000000..71a836239075aa6e6e4ecb700e9c42c95c022d91
--- /dev/null
+++ b/zhanyashuai/models.py
@@ -0,0 +1,3 @@
+from django.db import models
+
+# Create your models here.
diff --git a/zhanyashuai/tests.py b/zhanyashuai/tests.py
new file mode 100644
index 0000000000000000000000000000000000000000..7ce503c2dd97ba78597f6ff6e4393132753573f6
--- /dev/null
+++ b/zhanyashuai/tests.py
@@ -0,0 +1,3 @@
+from django.test import TestCase
+
+# Create your tests here.
diff --git a/zhanyashuai/urls.py b/zhanyashuai/urls.py
new file mode 100644
index 0000000000000000000000000000000000000000..269264903e3b3369cd552cef6030aac1a7277d44
--- /dev/null
+++ b/zhanyashuai/urls.py
@@ -0,0 +1,23 @@
+"""git_cs URL Configuration
+
+The `urlpatterns` list routes URLs to views. For more information please see:
+ https://docs.djangoproject.com/en/2.2/topics/http/urls/
+Examples:
+Function views
+ 1. Add an import: from my_app import views
+ 2. Add a URL to urlpatterns: path('', views.home, name='home')
+Class-based views
+ 1. Add an import: from other_app.views import Home
+ 2. Add a URL to urlpatterns: path('', Home.as_view(), name='home')
+Including another URLconf
+ 1. Import the include() function: from django.urls import include, path
+ 2. Add a URL to urlpatterns: path('blog/', include('blog.urls'))
+"""
+from django.urls import path, include
+from zhanyashuai import views
+app_name='zhanguashuai'
+from django.views.generic.base import TemplateView
+urlpatterns = [
+ # path('',TemplateView.as_view(template_name='index.html')),
+ path('zhanyashuai/', views.index, name = 'zhanyashuai'),
+]
diff --git a/zhanyashuai/views.py b/zhanyashuai/views.py
new file mode 100644
index 0000000000000000000000000000000000000000..6054c8b5fb4d999a958244c37ed6288fe42279a3
--- /dev/null
+++ b/zhanyashuai/views.py
@@ -0,0 +1,5 @@
+from django.shortcuts import render
+
+# Create your views here.
+def index(request):
+ return render(request,'zhanyashuai.html')
\ No newline at end of file