diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000000000000000000000000000000000000..e2d25360b0a8d055baf3fd8b9b014842d3c9abe6 --- /dev/null +++ b/.gitignore @@ -0,0 +1,106 @@ +# 自己写的 +.idea +# Byte-compiled / optimized / DLL files +__pycache__/ +*.py[cod] +*$py.class + +# C extensions +*.so + +# Distribution / packaging +.Python +build/ +develop-eggs/ +dist/ +downloads/ +eggs/ +.eggs/ +lib/ +lib64/ +parts/ +sdist/ +var/ +wheels/ +*.egg-info/ +.installed.cfg +*.egg +MANIFEST + +# PyInstaller +# Usually these files are written by a python script from a template +# before PyInstaller builds the exe, so as to inject date/other infos into it. +*.manifest +*.spec + +# Installer logs +pip-log.txt +pip-delete-this-directory.txt + +# Unit test / coverage reports +htmlcov/ +.tox/ +.coverage +.coverage.* +.cache +nosetests.xml +coverage.xml +*.cover +.hypothesis/ +.pytest_cache/ + +# Translations +*.mo +*.pot + +# Django stuff: +*.log +local_settings.py +db.sqlite3 + +# Flask stuff: +instance/ +.webassets-cache + +# Scrapy stuff: +.scrapy + +# Sphinx documentation +docs/_build/ + +# PyBuilder +target/ + +# Jupyter Notebook +.ipynb_checkpoints + +# pyenv +.python-version + +# celery beat schedule file +celerybeat-schedule + +# SageMath parsed files +*.sage.py + +# Environments +.env +.venv +env/ +venv/ +ENV/ +env.bak/ +venv.bak/ + +# Spyder project settings +.spyderproject +.spyproject + +# Rope project settings +.ropeproject + +# mkdocs documentation +/site + +# mypy +.mypy_cache/ 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/1807c_git/git_cs/urls.py b/1807c_git/git_cs/urls.py new file mode 100644 index 0000000000000000000000000000000000000000..e1276f9d58d8d219f4c3a9f085f726de34912a7e --- /dev/null +++ b/1807c_git/git_cs/urls.py @@ -0,0 +1,21 @@ +"""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 django.views.generic.base import TemplateView +urlpatterns = [ + path('',TemplateView.as_view(template_name='index.html')), + path('shijian/', include('shijian.urls')), +] diff --git a/1807c_git/git_cs/wsgi.py b/1807c_git/git_cs/wsgi.py new file mode 100644 index 0000000000000000000000000000000000000000..4324fe434787ae98973e69311ea71c26f7589c72 --- /dev/null +++ b/1807c_git/git_cs/wsgi.py @@ -0,0 +1,16 @@ +""" +WSGI config for git_cs project. + +It exposes the WSGI callable as a module-level variable named ``application``. + +For more information on this file, see +https://docs.djangoproject.com/en/2.2/howto/deployment/wsgi/ +""" + +import os + +from django.core.wsgi import get_wsgi_application + +os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'git_cs.settings') + +application = get_wsgi_application() 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/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/caojupeng/__init__.py b/caojupeng/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/caojupeng/__pycache__/__init__.cpython-36.pyc b/caojupeng/__pycache__/__init__.cpython-36.pyc new file mode 100644 index 0000000000000000000000000000000000000000..20016376751d776af7a49f66ed97a7bc827be356 Binary files /dev/null and b/caojupeng/__pycache__/__init__.cpython-36.pyc differ diff --git a/caojupeng/__pycache__/admin.cpython-36.pyc b/caojupeng/__pycache__/admin.cpython-36.pyc new file mode 100644 index 0000000000000000000000000000000000000000..cc3f975f73a51030d3efd37b58af52affc9e9d04 Binary files /dev/null and b/caojupeng/__pycache__/admin.cpython-36.pyc differ diff --git a/caojupeng/__pycache__/models.cpython-36.pyc b/caojupeng/__pycache__/models.cpython-36.pyc new file mode 100644 index 0000000000000000000000000000000000000000..92dc3c113243fd572e727e1635ef95a4a4606a8a Binary files /dev/null and b/caojupeng/__pycache__/models.cpython-36.pyc differ diff --git a/caojupeng/__pycache__/urls.cpython-36.pyc b/caojupeng/__pycache__/urls.cpython-36.pyc new file mode 100644 index 0000000000000000000000000000000000000000..358468660bd38b36fd58de9843a7f1bf58b96897 Binary files /dev/null and b/caojupeng/__pycache__/urls.cpython-36.pyc differ diff --git a/caojupeng/__pycache__/views.cpython-36.pyc b/caojupeng/__pycache__/views.cpython-36.pyc new file mode 100644 index 0000000000000000000000000000000000000000..fc37fc07b7914967d8c98000e88932aef7b9bb1f Binary files /dev/null and b/caojupeng/__pycache__/views.cpython-36.pyc differ diff --git a/caojupeng/admin.py b/caojupeng/admin.py new file mode 100644 index 0000000000000000000000000000000000000000..8c38f3f3dad51e4585f3984282c2a4bec5349c1e --- /dev/null +++ b/caojupeng/admin.py @@ -0,0 +1,3 @@ +from django.contrib import admin + +# Register your models here. diff --git a/caojupeng/apps.py b/caojupeng/apps.py new file mode 100644 index 0000000000000000000000000000000000000000..a6da15bbc04424a8169f2da08a75ea67a9e7d20e --- /dev/null +++ b/caojupeng/apps.py @@ -0,0 +1,5 @@ +from django.apps import AppConfig + + +class CaojupengConfig(AppConfig): + name = 'caojupeng' diff --git a/caojupeng/migrations/__init__.py b/caojupeng/migrations/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/caojupeng/migrations/__pycache__/__init__.cpython-36.pyc b/caojupeng/migrations/__pycache__/__init__.cpython-36.pyc new file mode 100644 index 0000000000000000000000000000000000000000..0d62b0e842e942cc36a815d50b0ea6b44d8f9bca Binary files /dev/null and b/caojupeng/migrations/__pycache__/__init__.cpython-36.pyc differ diff --git a/caojupeng/models.py b/caojupeng/models.py new file mode 100644 index 0000000000000000000000000000000000000000..71a836239075aa6e6e4ecb700e9c42c95c022d91 --- /dev/null +++ b/caojupeng/models.py @@ -0,0 +1,3 @@ +from django.db import models + +# Create your models here. diff --git a/caojupeng/tests.py b/caojupeng/tests.py new file mode 100644 index 0000000000000000000000000000000000000000..7ce503c2dd97ba78597f6ff6e4393132753573f6 --- /dev/null +++ b/caojupeng/tests.py @@ -0,0 +1,3 @@ +from django.test import TestCase + +# Create your tests here. diff --git a/caojupeng/urls.py b/caojupeng/urls.py new file mode 100644 index 0000000000000000000000000000000000000000..8a3e3fac6195247857cac5eed191d77e7e66bca4 --- /dev/null +++ b/caojupeng/urls.py @@ -0,0 +1,8 @@ +from django.urls import path +from caojupeng import views + +app_name='caojupeng' + +urlpatterns=[ + path('caojupeng/',views.caojupeng,name='caojupeng') +] \ No newline at end of file diff --git a/caojupeng/views.py b/caojupeng/views.py new file mode 100644 index 0000000000000000000000000000000000000000..9f852c2fa4300afd2aa21b66717aaaa6a1417c71 --- /dev/null +++ b/caojupeng/views.py @@ -0,0 +1,5 @@ +from django.shortcuts import render + +# Create your views here. +def caojupeng(request): + return render(request,'caojupeng.html') \ No newline at end of file diff --git a/chenghao/__init__.py b/chenghao/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/chenghao/__pycache__/__init__.cpython-36.pyc b/chenghao/__pycache__/__init__.cpython-36.pyc new file mode 100644 index 0000000000000000000000000000000000000000..aeec161683a010f4fdf03ac50d4d6f3cc6a18ad0 Binary files /dev/null and b/chenghao/__pycache__/__init__.cpython-36.pyc differ diff --git a/chenghao/__pycache__/__init__.cpython-37.pyc b/chenghao/__pycache__/__init__.cpython-37.pyc new file mode 100644 index 0000000000000000000000000000000000000000..dc7117ce843a3f3c9fa13ab83817b5803315e257 Binary files /dev/null and b/chenghao/__pycache__/__init__.cpython-37.pyc differ diff --git a/chenghao/__pycache__/admin.cpython-36.pyc b/chenghao/__pycache__/admin.cpython-36.pyc new file mode 100644 index 0000000000000000000000000000000000000000..2f66c8791f43b09e53cbec4bfa0fd97ba1953ab4 Binary files /dev/null and b/chenghao/__pycache__/admin.cpython-36.pyc differ diff --git a/chenghao/__pycache__/admin.cpython-37.pyc b/chenghao/__pycache__/admin.cpython-37.pyc new file mode 100644 index 0000000000000000000000000000000000000000..78f48f4fa8367f32fa0db26d2b1415990aa9d8e5 Binary files /dev/null and b/chenghao/__pycache__/admin.cpython-37.pyc differ diff --git a/chenghao/__pycache__/models.cpython-36.pyc b/chenghao/__pycache__/models.cpython-36.pyc new file mode 100644 index 0000000000000000000000000000000000000000..3a77c7013d46d1af6755b3aaf22885030ea22b5f Binary files /dev/null and b/chenghao/__pycache__/models.cpython-36.pyc differ diff --git a/chenghao/__pycache__/models.cpython-37.pyc b/chenghao/__pycache__/models.cpython-37.pyc new file mode 100644 index 0000000000000000000000000000000000000000..8dc2dd134de1a01a8eb243c49f47ef5e2eab13d0 Binary files /dev/null and b/chenghao/__pycache__/models.cpython-37.pyc differ diff --git a/chenghao/__pycache__/urls.cpython-36.pyc b/chenghao/__pycache__/urls.cpython-36.pyc new file mode 100644 index 0000000000000000000000000000000000000000..72600f5a0ee2a375c64c168e6642a36ae83b93ad Binary files /dev/null and b/chenghao/__pycache__/urls.cpython-36.pyc differ diff --git a/chenghao/__pycache__/urls.cpython-37.pyc b/chenghao/__pycache__/urls.cpython-37.pyc new file mode 100644 index 0000000000000000000000000000000000000000..1ec3028afd0daecf691e290fafbbab46ac1409fc Binary files /dev/null and b/chenghao/__pycache__/urls.cpython-37.pyc differ diff --git a/chenghao/__pycache__/views.cpython-36.pyc b/chenghao/__pycache__/views.cpython-36.pyc new file mode 100644 index 0000000000000000000000000000000000000000..107eef496bf415647ff59e6e05de4b1a01132c65 Binary files /dev/null and b/chenghao/__pycache__/views.cpython-36.pyc differ diff --git a/chenghao/__pycache__/views.cpython-37.pyc b/chenghao/__pycache__/views.cpython-37.pyc new file mode 100644 index 0000000000000000000000000000000000000000..49585ab2d4bc396f19faa2ecfd52e8af9b6f29aa Binary files /dev/null and b/chenghao/__pycache__/views.cpython-37.pyc differ diff --git a/chenghao/admin.py b/chenghao/admin.py new file mode 100644 index 0000000000000000000000000000000000000000..8c38f3f3dad51e4585f3984282c2a4bec5349c1e --- /dev/null +++ b/chenghao/admin.py @@ -0,0 +1,3 @@ +from django.contrib import admin + +# Register your models here. diff --git a/chenghao/apps.py b/chenghao/apps.py new file mode 100644 index 0000000000000000000000000000000000000000..fb26b01d90f7e3c0a24f116ad54f2cc4f6a69ac3 --- /dev/null +++ b/chenghao/apps.py @@ -0,0 +1,5 @@ +from django.apps import AppConfig + + +class ChenghaoConfig(AppConfig): + name = 'chenghao' diff --git a/chenghao/migrations/__init__.py b/chenghao/migrations/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/chenghao/migrations/__pycache__/__init__.cpython-36.pyc b/chenghao/migrations/__pycache__/__init__.cpython-36.pyc new file mode 100644 index 0000000000000000000000000000000000000000..a15b9de380f2a527f09c443ffc01cc1e17d750dc Binary files /dev/null and b/chenghao/migrations/__pycache__/__init__.cpython-36.pyc differ diff --git a/chenghao/migrations/__pycache__/__init__.cpython-37.pyc b/chenghao/migrations/__pycache__/__init__.cpython-37.pyc new file mode 100644 index 0000000000000000000000000000000000000000..2b90ad70c8dd7f576af731ad49b04e225cf61226 Binary files /dev/null and b/chenghao/migrations/__pycache__/__init__.cpython-37.pyc differ diff --git a/chenghao/models.py b/chenghao/models.py new file mode 100644 index 0000000000000000000000000000000000000000..71a836239075aa6e6e4ecb700e9c42c95c022d91 --- /dev/null +++ b/chenghao/models.py @@ -0,0 +1,3 @@ +from django.db import models + +# Create your models here. diff --git a/chenghao/tests.py b/chenghao/tests.py new file mode 100644 index 0000000000000000000000000000000000000000..7ce503c2dd97ba78597f6ff6e4393132753573f6 --- /dev/null +++ b/chenghao/tests.py @@ -0,0 +1,3 @@ +from django.test import TestCase + +# Create your tests here. diff --git a/chenghao/urls.py b/chenghao/urls.py new file mode 100644 index 0000000000000000000000000000000000000000..357a0c7d5c792114284ee05dddc8ce785ec43814 --- /dev/null +++ b/chenghao/urls.py @@ -0,0 +1,8 @@ +from django.urls import path +from chenghao import views + + +app_name = 'chenghao' +urlpatterns = [ + path('chenghao/',views.ch,name ='chenghao') +] \ No newline at end of file diff --git a/chenghao/views.py b/chenghao/views.py new file mode 100644 index 0000000000000000000000000000000000000000..3b86231ca573a35ca418ee00466fc69824db8185 --- /dev/null +++ b/chenghao/views.py @@ -0,0 +1,5 @@ +from django.shortcuts import render + +# Create your views here. +def ch(request): + return render(request,'ch.html') \ No newline at end of file diff --git a/clp/__init__.py b/clp/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/clp/__pycache__/__init__.cpython-36.pyc b/clp/__pycache__/__init__.cpython-36.pyc new file mode 100644 index 0000000000000000000000000000000000000000..544577e2b3ba01fd43fa0054b4c54d023decbc04 Binary files /dev/null and b/clp/__pycache__/__init__.cpython-36.pyc differ diff --git a/clp/__pycache__/admin.cpython-36.pyc b/clp/__pycache__/admin.cpython-36.pyc new file mode 100644 index 0000000000000000000000000000000000000000..4bf12218a447661bbbf9bf8a6406d895f84e1f91 Binary files /dev/null and b/clp/__pycache__/admin.cpython-36.pyc differ diff --git a/clp/__pycache__/models.cpython-36.pyc b/clp/__pycache__/models.cpython-36.pyc new file mode 100644 index 0000000000000000000000000000000000000000..549b62a35e64a483d83d709af59c9470583df8f8 Binary files /dev/null and b/clp/__pycache__/models.cpython-36.pyc differ diff --git a/clp/__pycache__/urls.cpython-36.pyc b/clp/__pycache__/urls.cpython-36.pyc new file mode 100644 index 0000000000000000000000000000000000000000..eafc3ba9dcc53d82234d94f35d0e171d7631ba85 Binary files /dev/null and b/clp/__pycache__/urls.cpython-36.pyc differ diff --git a/clp/__pycache__/views.cpython-36.pyc b/clp/__pycache__/views.cpython-36.pyc new file mode 100644 index 0000000000000000000000000000000000000000..12a6b6eff9bced3c3a8184d8e81e3270acb3bd88 Binary files /dev/null and b/clp/__pycache__/views.cpython-36.pyc differ diff --git a/clp/admin.py b/clp/admin.py new file mode 100644 index 0000000000000000000000000000000000000000..8c38f3f3dad51e4585f3984282c2a4bec5349c1e --- /dev/null +++ b/clp/admin.py @@ -0,0 +1,3 @@ +from django.contrib import admin + +# Register your models here. diff --git a/clp/apps.py b/clp/apps.py new file mode 100644 index 0000000000000000000000000000000000000000..7149d4aa3f78f27debddc86ddab8b978118153c2 --- /dev/null +++ b/clp/apps.py @@ -0,0 +1,5 @@ +from django.apps import AppConfig + + +class ClpConfig(AppConfig): + name = 'clp' diff --git a/clp/migrations/__init__.py b/clp/migrations/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/clp/migrations/__pycache__/__init__.cpython-36.pyc b/clp/migrations/__pycache__/__init__.cpython-36.pyc new file mode 100644 index 0000000000000000000000000000000000000000..a93c42ad740d8221b01de007365bf5ec0bb600ad Binary files /dev/null and b/clp/migrations/__pycache__/__init__.cpython-36.pyc differ diff --git a/clp/models.py b/clp/models.py new file mode 100644 index 0000000000000000000000000000000000000000..71a836239075aa6e6e4ecb700e9c42c95c022d91 --- /dev/null +++ b/clp/models.py @@ -0,0 +1,3 @@ +from django.db import models + +# Create your models here. diff --git a/clp/tests.py b/clp/tests.py new file mode 100644 index 0000000000000000000000000000000000000000..7ce503c2dd97ba78597f6ff6e4393132753573f6 --- /dev/null +++ b/clp/tests.py @@ -0,0 +1,3 @@ +from django.test import TestCase + +# Create your tests here. diff --git a/clp/urls.py b/clp/urls.py new file mode 100644 index 0000000000000000000000000000000000000000..9f90e256b58b39663804f62923036b13a3fd5a74 --- /dev/null +++ b/clp/urls.py @@ -0,0 +1,8 @@ +from django.urls import path +from clp import views + +app_name = "clp" + +urlpatterns = [ + path("clp/",views.clp,name = 'clp'), +] diff --git a/clp/views.py b/clp/views.py new file mode 100644 index 0000000000000000000000000000000000000000..4d22490b5c484b2e2964e46227b3edc9c054faa9 --- /dev/null +++ b/clp/views.py @@ -0,0 +1,5 @@ +from django.shortcuts import render + +# Create your views here. +def clp(request): + return render(request,'clp.html') \ 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/__pycache__/__init__.cpython-36.pyc b/dusen/__pycache__/__init__.cpython-36.pyc new file mode 100644 index 0000000000000000000000000000000000000000..2432977268885124a57cca17aa6fe2eccb06f872 Binary files /dev/null and b/dusen/__pycache__/__init__.cpython-36.pyc differ diff --git a/dusen/__pycache__/__init__.cpython-37.pyc b/dusen/__pycache__/__init__.cpython-37.pyc new file mode 100644 index 0000000000000000000000000000000000000000..5adaef5805642583fa342d86b645b537b6102aa7 Binary files /dev/null and b/dusen/__pycache__/__init__.cpython-37.pyc differ diff --git a/dusen/__pycache__/admin.cpython-36.pyc b/dusen/__pycache__/admin.cpython-36.pyc new file mode 100644 index 0000000000000000000000000000000000000000..789ec2cd2326b5e93912f4fcaed884453f73f6e2 Binary files /dev/null and b/dusen/__pycache__/admin.cpython-36.pyc differ diff --git a/dusen/__pycache__/admin.cpython-37.pyc b/dusen/__pycache__/admin.cpython-37.pyc new file mode 100644 index 0000000000000000000000000000000000000000..4f55c036a3dac71221ef9929c3c94a0cf3aa40cd Binary files /dev/null and b/dusen/__pycache__/admin.cpython-37.pyc differ diff --git a/dusen/__pycache__/models.cpython-36.pyc b/dusen/__pycache__/models.cpython-36.pyc new file mode 100644 index 0000000000000000000000000000000000000000..e2ffe1409c4ba2f2b260bfa9362217d974df583a Binary files /dev/null and b/dusen/__pycache__/models.cpython-36.pyc differ diff --git a/dusen/__pycache__/models.cpython-37.pyc b/dusen/__pycache__/models.cpython-37.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c4f4988a11bddcd48de0aba5fbebf089a912060f Binary files /dev/null and b/dusen/__pycache__/models.cpython-37.pyc differ diff --git a/dusen/__pycache__/urls.cpython-36.pyc b/dusen/__pycache__/urls.cpython-36.pyc new file mode 100644 index 0000000000000000000000000000000000000000..e251d77cc0522ccc1d3c0f29033e9d5f226df76c Binary files /dev/null and b/dusen/__pycache__/urls.cpython-36.pyc differ diff --git a/dusen/__pycache__/urls.cpython-37.pyc b/dusen/__pycache__/urls.cpython-37.pyc new file mode 100644 index 0000000000000000000000000000000000000000..851b358c54e5e834f7c15d2974d35a41b541de4e Binary files /dev/null and b/dusen/__pycache__/urls.cpython-37.pyc differ diff --git a/dusen/__pycache__/views.cpython-36.pyc b/dusen/__pycache__/views.cpython-36.pyc new file mode 100644 index 0000000000000000000000000000000000000000..75e2730ed266e38f5c6e463d2043483f4371a2e9 Binary files /dev/null and b/dusen/__pycache__/views.cpython-36.pyc differ diff --git a/dusen/__pycache__/views.cpython-37.pyc b/dusen/__pycache__/views.cpython-37.pyc new file mode 100644 index 0000000000000000000000000000000000000000..6918cd0290725fac9e54a5f6b050f38c3b487ab3 Binary files /dev/null and b/dusen/__pycache__/views.cpython-37.pyc differ 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/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/__pycache__/__init__.cpython-36.pyc b/fxy/__pycache__/__init__.cpython-36.pyc new file mode 100644 index 0000000000000000000000000000000000000000..67e676b85860036c2fad52ff68ca731046f87327 Binary files /dev/null and b/fxy/__pycache__/__init__.cpython-36.pyc differ diff --git a/fxy/__pycache__/__init__.cpython-37.pyc b/fxy/__pycache__/__init__.cpython-37.pyc new file mode 100644 index 0000000000000000000000000000000000000000..bdaf52a2f34a2ece1b307e21bdd80a3104c91be1 Binary files /dev/null and b/fxy/__pycache__/__init__.cpython-37.pyc differ diff --git a/fxy/__pycache__/admin.cpython-36.pyc b/fxy/__pycache__/admin.cpython-36.pyc new file mode 100644 index 0000000000000000000000000000000000000000..12ee85837ade6c7e12a7f18c0b82324501da3bde Binary files /dev/null and b/fxy/__pycache__/admin.cpython-36.pyc differ diff --git a/fxy/__pycache__/admin.cpython-37.pyc b/fxy/__pycache__/admin.cpython-37.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c1d870fe75783f2fa8aca041f47d49f91e41e7b0 Binary files /dev/null and b/fxy/__pycache__/admin.cpython-37.pyc differ diff --git a/fxy/__pycache__/models.cpython-36.pyc b/fxy/__pycache__/models.cpython-36.pyc new file mode 100644 index 0000000000000000000000000000000000000000..ec01e3bb3165b397b20a1cbbe1c54f0799c7f502 Binary files /dev/null and b/fxy/__pycache__/models.cpython-36.pyc differ diff --git a/fxy/__pycache__/models.cpython-37.pyc b/fxy/__pycache__/models.cpython-37.pyc new file mode 100644 index 0000000000000000000000000000000000000000..52012f4262b7104edc737e9381f5cace7f170fb1 Binary files /dev/null and b/fxy/__pycache__/models.cpython-37.pyc differ diff --git a/fxy/__pycache__/urls.cpython-36.pyc b/fxy/__pycache__/urls.cpython-36.pyc new file mode 100644 index 0000000000000000000000000000000000000000..7889f94787af4d371fa1b2658dd72d28c10336df Binary files /dev/null and b/fxy/__pycache__/urls.cpython-36.pyc differ diff --git a/fxy/__pycache__/urls.cpython-37.pyc b/fxy/__pycache__/urls.cpython-37.pyc new file mode 100644 index 0000000000000000000000000000000000000000..41cf5f08a0b378b4549e80e3658358079a1c3a9e Binary files /dev/null and b/fxy/__pycache__/urls.cpython-37.pyc differ diff --git a/fxy/__pycache__/views.cpython-36.pyc b/fxy/__pycache__/views.cpython-36.pyc new file mode 100644 index 0000000000000000000000000000000000000000..ea8f8aa843bd796bb872267f6292d7c2b1bef64f Binary files /dev/null and b/fxy/__pycache__/views.cpython-36.pyc differ diff --git a/fxy/__pycache__/views.cpython-37.pyc b/fxy/__pycache__/views.cpython-37.pyc new file mode 100644 index 0000000000000000000000000000000000000000..2598b3044384987af152878533c8204ee5588b73 Binary files /dev/null and b/fxy/__pycache__/views.cpython-37.pyc differ 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/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 index f9bc28ed002a24c21ff9e10f832c527dd274ece3..0352ae222f7b5516f0839692d0d302d36d150770 100644 Binary files a/git_cs/__pycache__/__init__.cpython-36.pyc and b/git_cs/__pycache__/__init__.cpython-36.pyc differ diff --git a/git_cs/__pycache__/__init__.cpython-37.pyc b/git_cs/__pycache__/__init__.cpython-37.pyc new file mode 100644 index 0000000000000000000000000000000000000000..ac76cdc0bcdb4a00d226f1a53d24f68eb755bbbd Binary files /dev/null and b/git_cs/__pycache__/__init__.cpython-37.pyc differ diff --git a/git_cs/__pycache__/settings.cpython-36.pyc b/git_cs/__pycache__/settings.cpython-36.pyc index 3b4e18e771daaa9eaf02f6256adb744ba4e33c35..5d616859f399bdd4aca21d14706ec515bafc3a54 100644 Binary files a/git_cs/__pycache__/settings.cpython-36.pyc and b/git_cs/__pycache__/settings.cpython-36.pyc differ diff --git a/git_cs/__pycache__/settings.cpython-37.pyc b/git_cs/__pycache__/settings.cpython-37.pyc new file mode 100644 index 0000000000000000000000000000000000000000..11871539a7c98335f12be9711e9965e06bbbbdad Binary files /dev/null and b/git_cs/__pycache__/settings.cpython-37.pyc differ diff --git a/git_cs/__pycache__/urls.cpython-36.pyc b/git_cs/__pycache__/urls.cpython-36.pyc index 1ec19ee10c3cfa243663f169b5b9052e54bc0dc2..05e8eaf6d26b7bc91297fd5bc9fe185d11c54df1 100644 Binary files a/git_cs/__pycache__/urls.cpython-36.pyc and b/git_cs/__pycache__/urls.cpython-36.pyc differ diff --git a/git_cs/__pycache__/urls.cpython-37.pyc b/git_cs/__pycache__/urls.cpython-37.pyc new file mode 100644 index 0000000000000000000000000000000000000000..0dd802c785df31541af2e96108df9fb02eafd4dd Binary files /dev/null and b/git_cs/__pycache__/urls.cpython-37.pyc differ diff --git a/git_cs/__pycache__/wsgi.cpython-36.pyc b/git_cs/__pycache__/wsgi.cpython-36.pyc index 42e149c13973d5923055bd5a7a8f464ffcb70119..7a4315ab413dd98cd26e1b2dea7362655dc387be 100644 Binary files a/git_cs/__pycache__/wsgi.cpython-36.pyc and b/git_cs/__pycache__/wsgi.cpython-36.pyc differ diff --git a/git_cs/__pycache__/wsgi.cpython-37.pyc b/git_cs/__pycache__/wsgi.cpython-37.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d0feba27a3567f08ed707b74948227d2384adb80 Binary files /dev/null and b/git_cs/__pycache__/wsgi.cpython-37.pyc differ diff --git a/git_cs/settings.py b/git_cs/settings.py index 94f29d941d064548b18affd2c65d2f72cfcd15fa..cf0bed44da0785ae54d8ef1bd5cf7fefaf351563 100644 --- a/git_cs/settings.py +++ b/git_cs/settings.py @@ -31,12 +31,76 @@ ALLOWED_HOSTS = [] # Application definition INSTALLED_APPS = [ + 'laofan', 'django.contrib.admin', 'django.contrib.auth', 'django.contrib.contenttypes', 'django.contrib.sessions', 'django.contrib.messages', 'django.contrib.staticfiles', + + 'liufan', + + + + # 'huoyanan', + + + + + + # 'huoyanan', + + + 'huoyanan', + + 'renjunjiang', + 'shijian1807', + + + 'klq', + 'hbj', + 'dusen', + 'lishan', + 'zhanghao', + 'fxy', + 'houxiaodong', + 'guanliang', + 'lilei', + + 'wsw', + + 'houjunjie', + # 'wangmwngli', + + # 'mazhen', + 'liyichao', + 'slq', + 'guohongyi', + + 'zhangruiqiang', + 'chenghao', + # 'zhangruiqiang', + + 'sxh', + 'wangjunjie', + + + + 'zhangxinru', + + 'zhanyashuai', + + 'zhangwenting', + + + + 'clp', + + + 'ning', + 'caojupeng', + ] MIDDLEWARE = [ diff --git a/git_cs/urls.py b/git_cs/urls.py index ec77a28ffffa215462e7b2a7ee60095f54f54353..05749764851a83183b9b4ea9add0b7628054c09d 100644 --- a/git_cs/urls.py +++ b/git_cs/urls.py @@ -15,6 +15,121 @@ 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')), + path('renjunjiang/',include('renjunjiang.urls')), + + + 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('liufna/',include('liufan.urls')), + + # path('zhanghao/',include('zhanghao.urls')), + + #path('zhanghao/',include('zhanghao.urls')), + + + + # path('zhanghao/',include('zhanghao.urls')), + + path('zhangxinru/', include('zhangxinru.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('shijian/',include('shijian1807.urls')), + + + + + path('zhangwenting/',include('zhangwenting.urls')), + + path('chenghao/',include('chenghao.urls')), + + + + # path('zhangruiqiang/',include('zhangruiqiang.urls')) + + # path('zhangruiqiang/',include('zhangruiqiang.urls')), + + + + + + path("sxh/",include("sxh.urls")), + + + + + path('zhangruiqiang/',include('zhangruiqiang.urls')), + + + + + # path('zhangruiqiang/',include('zhangruiqiang.urls')), + + + + + path('wjj/',include('wangjunjie.urls')), + + + path('laofan/',include('laofan.urls')), + + path('zhangyashuai/',include('zhanyashuai.urls')), + + + + path("clp/",include("clp.urls")), + + + + path('ningchengfu/',include('ning.urls')), + path('caojupeng/',include('caojupeng.urls')) + + ] diff --git a/guanliang/__init__.py b/guanliang/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/guanliang/__pycache__/__init__.cpython-36.pyc b/guanliang/__pycache__/__init__.cpython-36.pyc new file mode 100644 index 0000000000000000000000000000000000000000..14868805fd6773e2b3a6ab32818a840500882ff0 Binary files /dev/null and b/guanliang/__pycache__/__init__.cpython-36.pyc differ diff --git a/guanliang/__pycache__/__init__.cpython-37.pyc b/guanliang/__pycache__/__init__.cpython-37.pyc new file mode 100644 index 0000000000000000000000000000000000000000..307eef98984aeb2d93313a1897cb0123375b9d7a Binary files /dev/null and b/guanliang/__pycache__/__init__.cpython-37.pyc differ diff --git a/guanliang/__pycache__/admin.cpython-36.pyc b/guanliang/__pycache__/admin.cpython-36.pyc new file mode 100644 index 0000000000000000000000000000000000000000..4c3053a5e4d91e71aa30b2b3ab93ac87fd6174dc Binary files /dev/null and b/guanliang/__pycache__/admin.cpython-36.pyc differ diff --git a/guanliang/__pycache__/admin.cpython-37.pyc b/guanliang/__pycache__/admin.cpython-37.pyc new file mode 100644 index 0000000000000000000000000000000000000000..8d298a90cc1b00bc0cc3e8cec9cb3605140f4099 Binary files /dev/null and b/guanliang/__pycache__/admin.cpython-37.pyc differ diff --git a/guanliang/__pycache__/models.cpython-36.pyc b/guanliang/__pycache__/models.cpython-36.pyc new file mode 100644 index 0000000000000000000000000000000000000000..7321d677ff801daf554b0baa9fe5782549f4dea5 Binary files /dev/null and b/guanliang/__pycache__/models.cpython-36.pyc differ diff --git a/guanliang/__pycache__/models.cpython-37.pyc b/guanliang/__pycache__/models.cpython-37.pyc new file mode 100644 index 0000000000000000000000000000000000000000..95c849467a3ed99675fcf133773a16f6c46cec6c Binary files /dev/null and b/guanliang/__pycache__/models.cpython-37.pyc differ diff --git a/guanliang/__pycache__/urls.cpython-36.pyc b/guanliang/__pycache__/urls.cpython-36.pyc new file mode 100644 index 0000000000000000000000000000000000000000..8c6cce91acd1d83f6c1963ced4020f51e42d3490 Binary files /dev/null and b/guanliang/__pycache__/urls.cpython-36.pyc differ diff --git a/guanliang/__pycache__/urls.cpython-37.pyc b/guanliang/__pycache__/urls.cpython-37.pyc new file mode 100644 index 0000000000000000000000000000000000000000..0b7ce5152d9b885912fad1eeab572b2a3b254ef4 Binary files /dev/null and b/guanliang/__pycache__/urls.cpython-37.pyc differ diff --git a/guanliang/__pycache__/views.cpython-36.pyc b/guanliang/__pycache__/views.cpython-36.pyc new file mode 100644 index 0000000000000000000000000000000000000000..3abd97192158f0ca5a26530295ce8ec51f85bdfe Binary files /dev/null and b/guanliang/__pycache__/views.cpython-36.pyc differ diff --git a/guanliang/__pycache__/views.cpython-37.pyc b/guanliang/__pycache__/views.cpython-37.pyc new file mode 100644 index 0000000000000000000000000000000000000000..cd91263b7c4841d91817edc6757cef39435da6de Binary files /dev/null and b/guanliang/__pycache__/views.cpython-37.pyc differ 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/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/__pycache__/__init__.cpython-36.pyc b/guohongyi/__pycache__/__init__.cpython-36.pyc new file mode 100644 index 0000000000000000000000000000000000000000..5c84cd7e2fe80cb52cf57ddae5201ad75b10d4ac Binary files /dev/null and b/guohongyi/__pycache__/__init__.cpython-36.pyc differ diff --git a/guohongyi/__pycache__/__init__.cpython-37.pyc b/guohongyi/__pycache__/__init__.cpython-37.pyc new file mode 100644 index 0000000000000000000000000000000000000000..add5658f8cfc4a551de6102cefc87d11e869c641 Binary files /dev/null and b/guohongyi/__pycache__/__init__.cpython-37.pyc differ diff --git a/guohongyi/__pycache__/admin.cpython-36.pyc b/guohongyi/__pycache__/admin.cpython-36.pyc new file mode 100644 index 0000000000000000000000000000000000000000..86854352b5059dd899401979a3b1a9febc6eab68 Binary files /dev/null and b/guohongyi/__pycache__/admin.cpython-36.pyc differ diff --git a/guohongyi/__pycache__/admin.cpython-37.pyc b/guohongyi/__pycache__/admin.cpython-37.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c174a93a8934a8e29a01973c6d0ea209402b6c71 Binary files /dev/null and b/guohongyi/__pycache__/admin.cpython-37.pyc differ diff --git a/guohongyi/__pycache__/models.cpython-36.pyc b/guohongyi/__pycache__/models.cpython-36.pyc new file mode 100644 index 0000000000000000000000000000000000000000..7972996c177171ac88e132c25b62983919c2d727 Binary files /dev/null and b/guohongyi/__pycache__/models.cpython-36.pyc differ diff --git a/guohongyi/__pycache__/models.cpython-37.pyc b/guohongyi/__pycache__/models.cpython-37.pyc new file mode 100644 index 0000000000000000000000000000000000000000..2c99178e7abfeabd8261f57b8a81b33b5f7c6479 Binary files /dev/null and b/guohongyi/__pycache__/models.cpython-37.pyc differ diff --git a/guohongyi/__pycache__/urls.cpython-36.pyc b/guohongyi/__pycache__/urls.cpython-36.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f6294d52cb507f55ba2ae66effffe7d39d5d46a1 Binary files /dev/null and b/guohongyi/__pycache__/urls.cpython-36.pyc differ diff --git a/guohongyi/__pycache__/urls.cpython-37.pyc b/guohongyi/__pycache__/urls.cpython-37.pyc new file mode 100644 index 0000000000000000000000000000000000000000..2d36e0eb555d3dbff0fdfb0114f44c9253710d12 Binary files /dev/null and b/guohongyi/__pycache__/urls.cpython-37.pyc differ diff --git a/guohongyi/__pycache__/views.cpython-36.pyc b/guohongyi/__pycache__/views.cpython-36.pyc new file mode 100644 index 0000000000000000000000000000000000000000..3b0bf674584f57c9eeaa69b4de227e0a45769c39 Binary files /dev/null and b/guohongyi/__pycache__/views.cpython-36.pyc differ diff --git a/guohongyi/__pycache__/views.cpython-37.pyc b/guohongyi/__pycache__/views.cpython-37.pyc new file mode 100644 index 0000000000000000000000000000000000000000..fe69a269a2f1564bb516d76caad403a1508fbb69 Binary files /dev/null and b/guohongyi/__pycache__/views.cpython-37.pyc differ 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..d4d3d9d131577d2acf8bad75e7c38c672d3cedbd Binary files /dev/null and b/guohongyi/migrations/__pycache__/__init__.cpython-36.pyc differ diff --git a/guohongyi/migrations/__pycache__/__init__.cpython-37.pyc b/guohongyi/migrations/__pycache__/__init__.cpython-37.pyc new file mode 100644 index 0000000000000000000000000000000000000000..40b42210886541e480290dcc08fb56a1ee493487 Binary files /dev/null and b/guohongyi/migrations/__pycache__/__init__.cpython-37.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/__pycache__/__init__.cpython-36.pyc b/hbj/__pycache__/__init__.cpython-36.pyc new file mode 100644 index 0000000000000000000000000000000000000000..263d649cc7485ff048886682a3600e1965a66803 Binary files /dev/null and b/hbj/__pycache__/__init__.cpython-36.pyc differ diff --git a/hbj/__pycache__/__init__.cpython-37.pyc b/hbj/__pycache__/__init__.cpython-37.pyc new file mode 100644 index 0000000000000000000000000000000000000000..5e6a6f3ccb305a493bbd21efeb2bb663ba7078c1 Binary files /dev/null and b/hbj/__pycache__/__init__.cpython-37.pyc differ diff --git a/hbj/__pycache__/admin.cpython-36.pyc b/hbj/__pycache__/admin.cpython-36.pyc new file mode 100644 index 0000000000000000000000000000000000000000..3400bf52cda53ebfe3afd780781818a7ca3a6f20 Binary files /dev/null and b/hbj/__pycache__/admin.cpython-36.pyc differ diff --git a/hbj/__pycache__/admin.cpython-37.pyc b/hbj/__pycache__/admin.cpython-37.pyc new file mode 100644 index 0000000000000000000000000000000000000000..bff49e5c4bbeaa5a8eba20191c126668b8523330 Binary files /dev/null and b/hbj/__pycache__/admin.cpython-37.pyc differ diff --git a/hbj/__pycache__/models.cpython-36.pyc b/hbj/__pycache__/models.cpython-36.pyc new file mode 100644 index 0000000000000000000000000000000000000000..2779bc1d018724a0696558f81cafd52d22024555 Binary files /dev/null and b/hbj/__pycache__/models.cpython-36.pyc differ diff --git a/hbj/__pycache__/models.cpython-37.pyc b/hbj/__pycache__/models.cpython-37.pyc new file mode 100644 index 0000000000000000000000000000000000000000..2d0bb6425df9b0549ad2c6253913bd1252ccdc37 Binary files /dev/null and b/hbj/__pycache__/models.cpython-37.pyc differ diff --git a/hbj/__pycache__/urls.cpython-36.pyc b/hbj/__pycache__/urls.cpython-36.pyc new file mode 100644 index 0000000000000000000000000000000000000000..bd0b94fce1095ef7af7b5645f8310f5cd8cdaa38 Binary files /dev/null and b/hbj/__pycache__/urls.cpython-36.pyc differ diff --git a/hbj/__pycache__/urls.cpython-37.pyc b/hbj/__pycache__/urls.cpython-37.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d61ae4ac8c970a39bab79f6ac1986667bbc5e4a1 Binary files /dev/null and b/hbj/__pycache__/urls.cpython-37.pyc differ diff --git a/hbj/__pycache__/views.cpython-36.pyc b/hbj/__pycache__/views.cpython-36.pyc new file mode 100644 index 0000000000000000000000000000000000000000..0891fe802d0fb83e90a41e18683d77065ab8924f Binary files /dev/null and b/hbj/__pycache__/views.cpython-36.pyc differ diff --git a/hbj/__pycache__/views.cpython-37.pyc b/hbj/__pycache__/views.cpython-37.pyc new file mode 100644 index 0000000000000000000000000000000000000000..2c0ef44a04781e93a618359f5203a4c93e1eedff Binary files /dev/null and b/hbj/__pycache__/views.cpython-37.pyc differ 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/__pycache__/__init__.cpython-36.pyc b/houjunjie/__pycache__/__init__.cpython-36.pyc new file mode 100644 index 0000000000000000000000000000000000000000..43154d4eabad4a677fb0c3cb23f1ba78b27288fc Binary files /dev/null and b/houjunjie/__pycache__/__init__.cpython-36.pyc differ diff --git a/houjunjie/__pycache__/__init__.cpython-37.pyc b/houjunjie/__pycache__/__init__.cpython-37.pyc new file mode 100644 index 0000000000000000000000000000000000000000..519e3337a251389320cf3c7bb6e130c864f49c43 Binary files /dev/null and b/houjunjie/__pycache__/__init__.cpython-37.pyc differ diff --git a/houjunjie/__pycache__/admin.cpython-36.pyc b/houjunjie/__pycache__/admin.cpython-36.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b0da729693dabe531b32bc62616ce9e49d3c4348 Binary files /dev/null and b/houjunjie/__pycache__/admin.cpython-36.pyc differ diff --git a/houjunjie/__pycache__/admin.cpython-37.pyc b/houjunjie/__pycache__/admin.cpython-37.pyc new file mode 100644 index 0000000000000000000000000000000000000000..7ce1588d29a7527a7ca3940b8c7a97d6145b72fb Binary files /dev/null and b/houjunjie/__pycache__/admin.cpython-37.pyc differ diff --git a/houjunjie/__pycache__/models.cpython-36.pyc b/houjunjie/__pycache__/models.cpython-36.pyc new file mode 100644 index 0000000000000000000000000000000000000000..1631035d49e4326fe25cac6a41ecdcc1e1432ad1 Binary files /dev/null and b/houjunjie/__pycache__/models.cpython-36.pyc differ diff --git a/houjunjie/__pycache__/models.cpython-37.pyc b/houjunjie/__pycache__/models.cpython-37.pyc new file mode 100644 index 0000000000000000000000000000000000000000..4c6aac6dcacec910be0fc98f6adf3b504493cfc4 Binary files /dev/null and b/houjunjie/__pycache__/models.cpython-37.pyc differ diff --git a/houjunjie/__pycache__/urls.cpython-36.pyc b/houjunjie/__pycache__/urls.cpython-36.pyc new file mode 100644 index 0000000000000000000000000000000000000000..11cab7cd5b569f08abb37b2945697ee4a73e230d Binary files /dev/null and b/houjunjie/__pycache__/urls.cpython-36.pyc differ diff --git a/houjunjie/__pycache__/urls.cpython-37.pyc b/houjunjie/__pycache__/urls.cpython-37.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c0dd1eaebd83e716e462e5ecc053b05c37a89688 Binary files /dev/null and b/houjunjie/__pycache__/urls.cpython-37.pyc differ diff --git a/houjunjie/__pycache__/views.cpython-36.pyc b/houjunjie/__pycache__/views.cpython-36.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f5237cfd4390167d8d1a44f5ed0b07a2cb32222b Binary files /dev/null and b/houjunjie/__pycache__/views.cpython-36.pyc differ diff --git a/houjunjie/__pycache__/views.cpython-37.pyc b/houjunjie/__pycache__/views.cpython-37.pyc new file mode 100644 index 0000000000000000000000000000000000000000..10599528a5db23734b21427c1995493cec1ab202 Binary files /dev/null and b/houjunjie/__pycache__/views.cpython-37.pyc differ 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..695421b589abaf889875cf0aea157ac1767bfaf7 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..95831352ed53af03ccb9400340b5943ec712cf6a 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..7c3fb599cbc0bf83f06e3cf1b190741f306d51f2 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..4dfd62443082fefb9eb176087875e0864695843c 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..a5883eb3ad1e5b9aed60d8eceeb2fa89ad886a25 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..e9487d3a1ca8043e3ca587556b933321a367df49 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..6c5586bde0103766d6ad1160b82173154289f60a 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..6d51c0c0f29adfdabbf12ff7bc01e64bdfa54bb1 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..66eaf9aa5502cb62c140c1221c8a28cd7127dcfe 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..3b3bd68e0222a795fc17a73b7948bf0a557f7327 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..385d7369d578b266401d1e29baf75e16bf333dfe 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..7f3a11d98347308fd10ef61af8513a1e21f7f60f 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..6bb9494765f47128e626d1238d38937420da9aaf 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..016b307962e66230ae5fa0e44c001aaa1a3ba068 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..e52eb13c16ef3b044f7023cc86ec1f783cc83e35 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..3c30fa8157881c281252ff90f26e7f5f86068a7b 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..b9d622b8f20fa83cc3f53d0460036f5e5400006c 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..f059bf2afff483597b856bef2ac92a6d20bd1604 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..10005c8ab2a4945c8863c5a7f45b32543230a161 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..a9172dc3c66458d2ccc665136241e5f772fafc5a 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..d96ca6726b6e9f19b629ba6142f262aa6bf58080 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..dd0c0486badaba870988bc2c0674da9b3d0491c2 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..ab6e723360933219c752ba23aa6b29fcfb36626a 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..dd92842cfbcf7f4f46bca86c65991e7b1b3973cc 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..0273bf05d98115ea404e71dd0d9cce118e571213 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..b1bd71c1422e1efb093bb70bc0872db121c7cbf0 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..1e81b81c33725bcb481e7db900bec6bc6194df70 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..24856b2a9c8297f9a310e840199dfecf62b24a17 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..00f70985615af963b5bf0fbf75c2a08c887164d6 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..47dd7ec39b299f33646ab7c6fc830533085b4a99 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..5512372df72ac31793cde59d1463a3440d083ceb 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..29ffe798495c9efcfb5e11650b8524a45800271e 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/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/laofan/__init__.py b/laofan/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/laofan/__pycache__/__init__.cpython-36.pyc b/laofan/__pycache__/__init__.cpython-36.pyc new file mode 100644 index 0000000000000000000000000000000000000000..961d72b2a146cd671cc0c00c1ff52a1deec3923c Binary files /dev/null and b/laofan/__pycache__/__init__.cpython-36.pyc differ diff --git a/laofan/__pycache__/admin.cpython-36.pyc b/laofan/__pycache__/admin.cpython-36.pyc new file mode 100644 index 0000000000000000000000000000000000000000..776c389933116cecf2e3a589453df123575e93d1 Binary files /dev/null and b/laofan/__pycache__/admin.cpython-36.pyc differ diff --git a/laofan/__pycache__/models.cpython-36.pyc b/laofan/__pycache__/models.cpython-36.pyc new file mode 100644 index 0000000000000000000000000000000000000000..36efe13477c043273b698d0b9eb95043efe6b23f Binary files /dev/null and b/laofan/__pycache__/models.cpython-36.pyc differ diff --git a/laofan/__pycache__/urls.cpython-36.pyc b/laofan/__pycache__/urls.cpython-36.pyc new file mode 100644 index 0000000000000000000000000000000000000000..435123549d25a2afb8eca09b21a37e103e82b545 Binary files /dev/null and b/laofan/__pycache__/urls.cpython-36.pyc differ diff --git a/laofan/__pycache__/views.cpython-36.pyc b/laofan/__pycache__/views.cpython-36.pyc new file mode 100644 index 0000000000000000000000000000000000000000..659101f11cea7f81cf92526bd99d90c2a06be3e9 Binary files /dev/null and b/laofan/__pycache__/views.cpython-36.pyc differ diff --git a/laofan/admin.py b/laofan/admin.py new file mode 100644 index 0000000000000000000000000000000000000000..8c38f3f3dad51e4585f3984282c2a4bec5349c1e --- /dev/null +++ b/laofan/admin.py @@ -0,0 +1,3 @@ +from django.contrib import admin + +# Register your models here. diff --git a/laofan/apps.py b/laofan/apps.py new file mode 100644 index 0000000000000000000000000000000000000000..25cb438f84bd460919f3ea17ce0adf9625189d9a --- /dev/null +++ b/laofan/apps.py @@ -0,0 +1,5 @@ +from django.apps import AppConfig + + +class LaofanConfig(AppConfig): + name = 'laofan' diff --git a/laofan/migrations/__init__.py b/laofan/migrations/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/laofan/migrations/__pycache__/__init__.cpython-36.pyc b/laofan/migrations/__pycache__/__init__.cpython-36.pyc new file mode 100644 index 0000000000000000000000000000000000000000..a3e32f2e45699b72ee9e727a725bd1ce67cef7f8 Binary files /dev/null and b/laofan/migrations/__pycache__/__init__.cpython-36.pyc differ diff --git a/laofan/models.py b/laofan/models.py new file mode 100644 index 0000000000000000000000000000000000000000..71a836239075aa6e6e4ecb700e9c42c95c022d91 --- /dev/null +++ b/laofan/models.py @@ -0,0 +1,3 @@ +from django.db import models + +# Create your models here. diff --git a/laofan/tests.py b/laofan/tests.py new file mode 100644 index 0000000000000000000000000000000000000000..7ce503c2dd97ba78597f6ff6e4393132753573f6 --- /dev/null +++ b/laofan/tests.py @@ -0,0 +1,3 @@ +from django.test import TestCase + +# Create your tests here. diff --git a/laofan/urls.py b/laofan/urls.py new file mode 100644 index 0000000000000000000000000000000000000000..1c42c0a03283d61cf724170887d8e9d52a1210bc --- /dev/null +++ b/laofan/urls.py @@ -0,0 +1,9 @@ +from django.urls import path + +from .views import * + +app_name='laofan' + +urlpatterns=[ + path('laofan/',laofan,name='laofan') +] \ No newline at end of file diff --git a/laofan/views.py b/laofan/views.py new file mode 100644 index 0000000000000000000000000000000000000000..227869bce0d8d56c6d9db7e766e51b004c5e23e5 --- /dev/null +++ b/laofan/views.py @@ -0,0 +1,6 @@ +from django.shortcuts import render + +# Create your views here. + +def laofan(request): + return render(request,'laofan.html') 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..15e12340f880eb48bce7ebd3b2ad0e88aac639b6 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..217e7b8528b3caee9cbc4c46fb571d612191f6ad 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..7377c65d58c9374c82836ff0926ce10b2bb501f3 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..a5dda764cc333327126834ec54b6f8c0118ae1af 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..358225922c08eb4e307a9abaa5cb511b317eeb08 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..85e1cf8feaa64fe4ba50223f1e85b26d233cffe1 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..9d49293665e4e4f208e5d596823db93a6ff7d257 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..a735b79f76a8597d9ed87a2736b2f667cd65f287 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..25c33661fac6da9c2aa1ab6a3321daf2ad0db967 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..dd800b2cb2c5d491b6a6a41363841da241ad73c1 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/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..f844204f298c0c6bc797828c2cb89eaca71f4351 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..099afb8fcaf483d6ffb444233fdb82b10dd27ca7 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..a9bdde6879987d82f6ddcde294decc072fb25300 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..41968a049543aadddeb99d0f4c98a0b25db33369 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..8319c3c5dcbc5b93c657b90e7d21b315d8f2a30c 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..90133b1386ed02ab98b61e8cbcda06772e699ad0 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..63d1334411bb8f532f257fb2d0d4ccdc9bbcf259 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..53d17bb130d2afd913404308e07d13ab3106fdc1 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..aec3e0a452115ae75bd42de4a2cceef896abca17 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..ff6545de0b137dadde776aab3a5a9e71a79c812a 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/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/liufan/__init__.py b/liufan/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/liufan/admin.py b/liufan/admin.py new file mode 100644 index 0000000000000000000000000000000000000000..8c38f3f3dad51e4585f3984282c2a4bec5349c1e --- /dev/null +++ b/liufan/admin.py @@ -0,0 +1,3 @@ +from django.contrib import admin + +# Register your models here. diff --git a/liufan/apps.py b/liufan/apps.py new file mode 100644 index 0000000000000000000000000000000000000000..14fb88b7b3589038944b844ecd8c58df64ff7c37 --- /dev/null +++ b/liufan/apps.py @@ -0,0 +1,5 @@ +from django.apps import AppConfig + + +class LiufanConfig(AppConfig): + name = 'liufan' diff --git a/liufan/migrations/__init__.py b/liufan/migrations/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/liufan/models.py b/liufan/models.py new file mode 100644 index 0000000000000000000000000000000000000000..71a836239075aa6e6e4ecb700e9c42c95c022d91 --- /dev/null +++ b/liufan/models.py @@ -0,0 +1,3 @@ +from django.db import models + +# Create your models here. diff --git a/liufan/tests.py b/liufan/tests.py new file mode 100644 index 0000000000000000000000000000000000000000..7ce503c2dd97ba78597f6ff6e4393132753573f6 --- /dev/null +++ b/liufan/tests.py @@ -0,0 +1,3 @@ +from django.test import TestCase + +# Create your tests here. diff --git a/liufan/urls.py b/liufan/urls.py new file mode 100644 index 0000000000000000000000000000000000000000..55638684c2dcaf5b938074b16dff985c02a589d2 --- /dev/null +++ b/liufan/urls.py @@ -0,0 +1,8 @@ +from django.urls import path, include +from . import views +app_name='liufan' + +urlpatterns = [ + path('',views.index,name='index'), + path('liufan/',views.liufan,name='liufan') +] \ No newline at end of file diff --git a/liufan/views.py b/liufan/views.py new file mode 100644 index 0000000000000000000000000000000000000000..05c3a50f4b9d942ca70caaf04f76f6633ba41f9e --- /dev/null +++ b/liufan/views.py @@ -0,0 +1,7 @@ +from django.shortcuts import render + +# Create your views here. +def index(request): + return request(request,'index.html') +def liufan(request): + return render(request,'liufan.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..051b89e295a156158dfeb4cff70a1d61598ccd45 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..a8997eac24bce759afc0913c38937643008d0ed8 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..24348341b3b5e6db402109471adc0019d161c449 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..21d89041b904bf9a319e52060fe81d57a68ae72a 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..8b2a509a07079552ef710a7edf61e90853d4e7c9 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..697e919693ad93b3fe0d5dcaf3785e3bc2b91f0d 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..c24c3987d1db780cd7221e244062958c019f182c 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..d496f99fb496b0e475fcf95bbb35a93b31a75dc0 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..d883b1315196c32f8592d90b9a98fc4b95df87d2 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..7b16065831fcd386730befc2839995149ca0af31 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..409d5afbd89bd399044d3853646906916c2110fc 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..5f99b5da2ecec33d4ea2e12d054b23ccc7d60f50 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..3fdd59fd8571c001b96cf4b05af9e01804fe0263 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..c98a947e3ad60f8df920aadc3d64a5d9589f686b Binary files /dev/null and b/mazhen/__pycache__/__init__.cpython-37.pyc differ diff --git a/mazhen/__pycache__/admin.cpython-37.pyc b/mazhen/__pycache__/admin.cpython-37.pyc new file mode 100644 index 0000000000000000000000000000000000000000..2d186c342540368cfa3178138a6bf42b82ec735e Binary files /dev/null and b/mazhen/__pycache__/admin.cpython-37.pyc differ diff --git a/mazhen/__pycache__/models.cpython-37.pyc b/mazhen/__pycache__/models.cpython-37.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c3204eafe9d0bed72f80a234103078f9d0d96216 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..814ce572060bd31af6408166887d25d0e430101b 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..a62e4af97721b8a59994b77d07e425496eb16571 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..28c2ba31660b945e456703806b3ab2564552409b 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..a7046216d7e6afe320548310f25369448c835954 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/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/ning/__init__.py b/ning/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/ning/__pycache__/__init__.cpython-36.pyc b/ning/__pycache__/__init__.cpython-36.pyc new file mode 100644 index 0000000000000000000000000000000000000000..845fbed5029f1b460feb2e89b84da6b226150662 Binary files /dev/null and b/ning/__pycache__/__init__.cpython-36.pyc differ diff --git a/ning/__pycache__/admin.cpython-36.pyc b/ning/__pycache__/admin.cpython-36.pyc new file mode 100644 index 0000000000000000000000000000000000000000..511d35a7388551d06ef81899a68ec182bd28ae0b Binary files /dev/null and b/ning/__pycache__/admin.cpython-36.pyc differ diff --git a/ning/__pycache__/models.cpython-36.pyc b/ning/__pycache__/models.cpython-36.pyc new file mode 100644 index 0000000000000000000000000000000000000000..5ade842a7efdd39cdb90aa58bfbb85ea9e8a46b6 Binary files /dev/null and b/ning/__pycache__/models.cpython-36.pyc differ diff --git a/ning/__pycache__/urls.cpython-36.pyc b/ning/__pycache__/urls.cpython-36.pyc new file mode 100644 index 0000000000000000000000000000000000000000..9351b0324193c3e24dd299b7968045b23a31fa53 Binary files /dev/null and b/ning/__pycache__/urls.cpython-36.pyc differ diff --git a/ning/__pycache__/views.cpython-36.pyc b/ning/__pycache__/views.cpython-36.pyc new file mode 100644 index 0000000000000000000000000000000000000000..21e154682a73a941b32cc91e184f5ff04a3bfc7f Binary files /dev/null and b/ning/__pycache__/views.cpython-36.pyc differ diff --git a/ning/admin.py b/ning/admin.py new file mode 100644 index 0000000000000000000000000000000000000000..8c38f3f3dad51e4585f3984282c2a4bec5349c1e --- /dev/null +++ b/ning/admin.py @@ -0,0 +1,3 @@ +from django.contrib import admin + +# Register your models here. diff --git a/ning/apps.py b/ning/apps.py new file mode 100644 index 0000000000000000000000000000000000000000..da12f7dbe9cf3c122d6ed6d3ff2415f21b218c95 --- /dev/null +++ b/ning/apps.py @@ -0,0 +1,5 @@ +from django.apps import AppConfig + + +class NingConfig(AppConfig): + name = 'ning' diff --git a/ning/migrations/__init__.py b/ning/migrations/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/ning/migrations/__pycache__/__init__.cpython-36.pyc b/ning/migrations/__pycache__/__init__.cpython-36.pyc new file mode 100644 index 0000000000000000000000000000000000000000..ffedb9afff19e21bbb00731ec6a0903791185292 Binary files /dev/null and b/ning/migrations/__pycache__/__init__.cpython-36.pyc differ diff --git a/ning/models.py b/ning/models.py new file mode 100644 index 0000000000000000000000000000000000000000..71a836239075aa6e6e4ecb700e9c42c95c022d91 --- /dev/null +++ b/ning/models.py @@ -0,0 +1,3 @@ +from django.db import models + +# Create your models here. diff --git a/ning/tests.py b/ning/tests.py new file mode 100644 index 0000000000000000000000000000000000000000..7ce503c2dd97ba78597f6ff6e4393132753573f6 --- /dev/null +++ b/ning/tests.py @@ -0,0 +1,3 @@ +from django.test import TestCase + +# Create your tests here. diff --git a/ning/urls.py b/ning/urls.py new file mode 100644 index 0000000000000000000000000000000000000000..3b8556f043a6f27b45b6952a5c66a14f7ff67e44 --- /dev/null +++ b/ning/urls.py @@ -0,0 +1,8 @@ +from django.urls import path, include +from ning import views + +app_name = 'ningchengfu' + +urlpatterns = [ + path('ning/',views.index,name='ningchengfu'), +] diff --git a/ning/views.py b/ning/views.py new file mode 100644 index 0000000000000000000000000000000000000000..fda11cab3db71d8c796e1a0c845a78bb1369634c --- /dev/null +++ b/ning/views.py @@ -0,0 +1,5 @@ +from django.shortcuts import render + +# Create your views here. +def index(request): + return render(request,'ning.html') \ No newline at end of file diff --git a/renjunjiang/__init__.py b/renjunjiang/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/renjunjiang/admin.py b/renjunjiang/admin.py new file mode 100644 index 0000000000000000000000000000000000000000..8c38f3f3dad51e4585f3984282c2a4bec5349c1e --- /dev/null +++ b/renjunjiang/admin.py @@ -0,0 +1,3 @@ +from django.contrib import admin + +# Register your models here. diff --git a/renjunjiang/apps.py b/renjunjiang/apps.py new file mode 100644 index 0000000000000000000000000000000000000000..42fda924f2867d1d37d873f208a85d47270419d0 --- /dev/null +++ b/renjunjiang/apps.py @@ -0,0 +1,5 @@ +from django.apps import AppConfig + + +class RenjunjiangConfig(AppConfig): + name = 'renjunjiang' diff --git a/renjunjiang/migrations/__init__.py b/renjunjiang/migrations/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/renjunjiang/models.py b/renjunjiang/models.py new file mode 100644 index 0000000000000000000000000000000000000000..71a836239075aa6e6e4ecb700e9c42c95c022d91 --- /dev/null +++ b/renjunjiang/models.py @@ -0,0 +1,3 @@ +from django.db import models + +# Create your models here. diff --git a/renjunjiang/tests.py b/renjunjiang/tests.py new file mode 100644 index 0000000000000000000000000000000000000000..7ce503c2dd97ba78597f6ff6e4393132753573f6 --- /dev/null +++ b/renjunjiang/tests.py @@ -0,0 +1,3 @@ +from django.test import TestCase + +# Create your tests here. diff --git a/renjunjiang/urls.py b/renjunjiang/urls.py new file mode 100644 index 0000000000000000000000000000000000000000..52147479644ab5bd0381368a161b1bf69557f1a7 --- /dev/null +++ b/renjunjiang/urls.py @@ -0,0 +1,8 @@ +from django.urls import path, include +from django.views.generic.base import TemplateView +app_name='renjunjiang' +from . import views +urlpatterns = [ + path('',views.index,name='index'), + path('renjunjiang',views.renjunjiang,name='renjunjiang'), + ] \ No newline at end of file diff --git a/renjunjiang/views.py b/renjunjiang/views.py new file mode 100644 index 0000000000000000000000000000000000000000..9bd99c62f891febd42c062506569b9317cdf874f --- /dev/null +++ b/renjunjiang/views.py @@ -0,0 +1,8 @@ +from django.shortcuts import render + +# Create your views here. +def index(request): + return render(request,'index.html') + +def renjunjiang(request): + return render(request,'renjunjiang.html') \ No newline at end of file diff --git a/shijian1807/__init__.py b/shijian1807/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/shijian1807/__pycache__/__init__.cpython-36.pyc b/shijian1807/__pycache__/__init__.cpython-36.pyc new file mode 100644 index 0000000000000000000000000000000000000000..2763558e051e6bb60bd4086e0d0e4ef7eefb4e5c Binary files /dev/null and b/shijian1807/__pycache__/__init__.cpython-36.pyc differ diff --git a/shijian1807/__pycache__/__init__.cpython-37.pyc b/shijian1807/__pycache__/__init__.cpython-37.pyc new file mode 100644 index 0000000000000000000000000000000000000000..2f00893c6810730c3f8d83d5beb75fda7b22a4ce Binary files /dev/null and b/shijian1807/__pycache__/__init__.cpython-37.pyc differ diff --git a/shijian1807/__pycache__/admin.cpython-36.pyc b/shijian1807/__pycache__/admin.cpython-36.pyc new file mode 100644 index 0000000000000000000000000000000000000000..e53886b6d9bc7219d00e45fe96fb478d37724f8f Binary files /dev/null and b/shijian1807/__pycache__/admin.cpython-36.pyc differ diff --git a/shijian1807/__pycache__/admin.cpython-37.pyc b/shijian1807/__pycache__/admin.cpython-37.pyc new file mode 100644 index 0000000000000000000000000000000000000000..6156d83bc5f90bc2c146767d79882d2a5a9bdfe1 Binary files /dev/null and b/shijian1807/__pycache__/admin.cpython-37.pyc differ diff --git a/shijian1807/__pycache__/models.cpython-36.pyc b/shijian1807/__pycache__/models.cpython-36.pyc new file mode 100644 index 0000000000000000000000000000000000000000..0baaf0ea46d7dd05379eb4655ed16c87e93c2310 Binary files /dev/null and b/shijian1807/__pycache__/models.cpython-36.pyc differ diff --git a/shijian1807/__pycache__/models.cpython-37.pyc b/shijian1807/__pycache__/models.cpython-37.pyc new file mode 100644 index 0000000000000000000000000000000000000000..cdf028342b029683e97f6fecb31da70207760548 Binary files /dev/null and b/shijian1807/__pycache__/models.cpython-37.pyc differ diff --git a/shijian1807/__pycache__/urls.cpython-36.pyc b/shijian1807/__pycache__/urls.cpython-36.pyc new file mode 100644 index 0000000000000000000000000000000000000000..942f0b3eb46119abdc1cd8da7f8d6a92fb8f3fbf Binary files /dev/null and b/shijian1807/__pycache__/urls.cpython-36.pyc differ diff --git a/shijian1807/__pycache__/urls.cpython-37.pyc b/shijian1807/__pycache__/urls.cpython-37.pyc new file mode 100644 index 0000000000000000000000000000000000000000..92e33b8a6f8885c7248a4201b5d22653cf41a226 Binary files /dev/null and b/shijian1807/__pycache__/urls.cpython-37.pyc differ diff --git a/shijian1807/__pycache__/views.cpython-36.pyc b/shijian1807/__pycache__/views.cpython-36.pyc new file mode 100644 index 0000000000000000000000000000000000000000..a3177731db49b00b72ac2988648af670e6dd405c Binary files /dev/null and b/shijian1807/__pycache__/views.cpython-36.pyc differ diff --git a/shijian1807/__pycache__/views.cpython-37.pyc b/shijian1807/__pycache__/views.cpython-37.pyc new file mode 100644 index 0000000000000000000000000000000000000000..17f6793ef7fc45d8695bd20a9d58144b4409ba81 Binary files /dev/null and b/shijian1807/__pycache__/views.cpython-37.pyc differ diff --git a/shijian1807/admin.py b/shijian1807/admin.py new file mode 100644 index 0000000000000000000000000000000000000000..8c38f3f3dad51e4585f3984282c2a4bec5349c1e --- /dev/null +++ b/shijian1807/admin.py @@ -0,0 +1,3 @@ +from django.contrib import admin + +# Register your models here. diff --git a/shijian1807/apps.py b/shijian1807/apps.py new file mode 100644 index 0000000000000000000000000000000000000000..e4c7ad64562300f49a49d8249bc0bb218117e6b5 --- /dev/null +++ b/shijian1807/apps.py @@ -0,0 +1,5 @@ +from django.apps import AppConfig + + +class Shijian1807Config(AppConfig): + name = 'shijian1807' diff --git a/shijian1807/migrations/__init__.py b/shijian1807/migrations/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/shijian1807/migrations/__pycache__/__init__.cpython-36.pyc b/shijian1807/migrations/__pycache__/__init__.cpython-36.pyc new file mode 100644 index 0000000000000000000000000000000000000000..4946d4eda9dae8bfa66ebf9db8105b1dafc1d89a Binary files /dev/null and b/shijian1807/migrations/__pycache__/__init__.cpython-36.pyc differ diff --git a/shijian1807/migrations/__pycache__/__init__.cpython-37.pyc b/shijian1807/migrations/__pycache__/__init__.cpython-37.pyc new file mode 100644 index 0000000000000000000000000000000000000000..9b1b2d87277836bca5e0a3eceff96dd163afd55b Binary files /dev/null and b/shijian1807/migrations/__pycache__/__init__.cpython-37.pyc differ diff --git a/shijian1807/models.py b/shijian1807/models.py new file mode 100644 index 0000000000000000000000000000000000000000..71a836239075aa6e6e4ecb700e9c42c95c022d91 --- /dev/null +++ b/shijian1807/models.py @@ -0,0 +1,3 @@ +from django.db import models + +# Create your models here. diff --git a/shijian1807/tests.py b/shijian1807/tests.py new file mode 100644 index 0000000000000000000000000000000000000000..7ce503c2dd97ba78597f6ff6e4393132753573f6 --- /dev/null +++ b/shijian1807/tests.py @@ -0,0 +1,3 @@ +from django.test import TestCase + +# Create your tests here. diff --git a/shijian1807/urls.py b/shijian1807/urls.py new file mode 100644 index 0000000000000000000000000000000000000000..c608948160ca19b5288af343f1189ee3be17369b --- /dev/null +++ b/shijian1807/urls.py @@ -0,0 +1,8 @@ +from django.urls import path, include +from . import views +app_name='shijian' + +urlpatterns = [ + path('',views.index,name='index'), + path('shijian/',views.shijian,name='shijian') +] \ No newline at end of file diff --git a/shijian1807/views.py b/shijian1807/views.py new file mode 100644 index 0000000000000000000000000000000000000000..81c3b405ba9cf0a769efd49675150912f3ee86bc --- /dev/null +++ b/shijian1807/views.py @@ -0,0 +1,8 @@ +from django.shortcuts import render + +# Create your views here. +def index(request): + return render(request,'index.html') + +def shijian(request): + return render(request,'shijian.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..a0db48d32ec27bb450d0c2e81a108052c7b3f5ca 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..b30914136f5ddb10f06075876f73b7c9dea19224 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..7dd314422507aeef1c2d49b12a6f075c0ad75cd9 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..c69ef97790d3c1fe37abb4f3d157c1cbdcab9da6 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..7762fff8060b206fe60ac514f137adfa31199090 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..ff8d3595c6ddaa3807e90110d145eb871e168c07 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..6d28d5928ee620843fed34c6a2a1cb569180d6fe 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..34483ef49c1374689bed42399b4655dfe6128bba 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..d0fc8cce9e6c77d7a270a99c2912addce94dd91a 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..1ce2472dce6b02552b1d46de78e8ee0b37096f74 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..0799175870732a5e30be24acbccf1b8cc2bfdf25 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..d59f703af9f703b3c4126e18802fd6a10dda6baf 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..bfad7388d937500ab3bdea30293a69b952baf9ce Binary files /dev/null and b/sxh/__pycache__/__init__.cpython-36.pyc differ diff --git a/sxh/__pycache__/__init__.cpython-37.pyc b/sxh/__pycache__/__init__.cpython-37.pyc new file mode 100644 index 0000000000000000000000000000000000000000..0649481e74bdefef92b105632c29bd344dc6be7b Binary files /dev/null and b/sxh/__pycache__/__init__.cpython-37.pyc differ diff --git a/sxh/__pycache__/admin.cpython-36.pyc b/sxh/__pycache__/admin.cpython-36.pyc new file mode 100644 index 0000000000000000000000000000000000000000..2e35d4e10402e8b5ecc21202644b2d886dba3016 Binary files /dev/null and b/sxh/__pycache__/admin.cpython-36.pyc differ diff --git a/sxh/__pycache__/admin.cpython-37.pyc b/sxh/__pycache__/admin.cpython-37.pyc new file mode 100644 index 0000000000000000000000000000000000000000..5c920653451107909b4b0c27b58698cca9f5dadb Binary files /dev/null and b/sxh/__pycache__/admin.cpython-37.pyc differ diff --git a/sxh/__pycache__/models.cpython-36.pyc b/sxh/__pycache__/models.cpython-36.pyc new file mode 100644 index 0000000000000000000000000000000000000000..2f0ebca9fc32f90c801d472954a9e17732107bcd Binary files /dev/null and b/sxh/__pycache__/models.cpython-36.pyc differ diff --git a/sxh/__pycache__/models.cpython-37.pyc b/sxh/__pycache__/models.cpython-37.pyc new file mode 100644 index 0000000000000000000000000000000000000000..29a51cbc64c6fd0c4d2458642759b85f24d3a476 Binary files /dev/null and b/sxh/__pycache__/models.cpython-37.pyc differ diff --git a/sxh/__pycache__/urls.cpython-36.pyc b/sxh/__pycache__/urls.cpython-36.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d1cc59056b6f211654f3680ae14255d077e8ee56 Binary files /dev/null and b/sxh/__pycache__/urls.cpython-36.pyc differ diff --git a/sxh/__pycache__/urls.cpython-37.pyc b/sxh/__pycache__/urls.cpython-37.pyc new file mode 100644 index 0000000000000000000000000000000000000000..3886e8a3477ed8f6b76af9d20e2b1dc920c9ad38 Binary files /dev/null and b/sxh/__pycache__/urls.cpython-37.pyc differ diff --git a/sxh/__pycache__/views.cpython-36.pyc b/sxh/__pycache__/views.cpython-36.pyc new file mode 100644 index 0000000000000000000000000000000000000000..661117786e6dae7c9a586e468f642bd8f4b2f3d8 Binary files /dev/null and b/sxh/__pycache__/views.cpython-36.pyc differ diff --git a/sxh/__pycache__/views.cpython-37.pyc b/sxh/__pycache__/views.cpython-37.pyc new file mode 100644 index 0000000000000000000000000000000000000000..1a2c04aa222fc8dc01c004a7c0dc7b6091567a91 Binary files /dev/null and b/sxh/__pycache__/views.cpython-37.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..66ebb090ba031a814dd8d33382c6e789fe517d53 Binary files /dev/null and b/sxh/migrations/__pycache__/__init__.cpython-36.pyc differ diff --git a/sxh/migrations/__pycache__/__init__.cpython-37.pyc b/sxh/migrations/__pycache__/__init__.cpython-37.pyc new file mode 100644 index 0000000000000000000000000000000000000000..ba72ebedfa8399705a97475ccd70fd2a448c8287 Binary files /dev/null and b/sxh/migrations/__pycache__/__init__.cpython-37.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/caojupeng.html b/templates/caojupeng.html new file mode 100644 index 0000000000000000000000000000000000000000..fe111a4649466c7cfb6ad5d77eec67ccdbbb1b9d --- /dev/null +++ b/templates/caojupeng.html @@ -0,0 +1,10 @@ + + + + + caojupeng + + +

曹菊鹏

+ + \ No newline at end of file diff --git a/templates/ch.html b/templates/ch.html new file mode 100644 index 0000000000000000000000000000000000000000..2d33b2180bb8256574456d2322d199a7182950af --- /dev/null +++ b/templates/ch.html @@ -0,0 +1,10 @@ + + + + + Title + + + 程皓 + + \ No newline at end of file diff --git a/templates/clp.html b/templates/clp.html new file mode 100644 index 0000000000000000000000000000000000000000..0825d4c3cf3908afd836f062183fa35299ec041c --- /dev/null +++ b/templates/clp.html @@ -0,0 +1,10 @@ + + + + + Title + + +

clp

+ + \ 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..2cf3e7caa7e8c20edf94d4065ada1458cf421e92 100644 --- a/templates/index.html +++ b/templates/index.html @@ -1,4 +1,4 @@ - + @@ -7,10 +7,50 @@

1807C Git 测试项目