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 测试项目