From 2a5f2f2fb040b41d7ed88da03b8798a5739b111d Mon Sep 17 00:00:00 2001 From: junjiehou <1904318367@qq.com> Date: Thu, 15 Aug 2019 19:26:31 +0800 Subject: [PATCH 1/2] =?UTF-8?q?=E4=BE=AF=E4=BF=8A=E6=9D=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .idea/1807c_git.iml | 32 +++ .idea/misc.xml | 7 + .idea/modules.xml | 8 + .idea/vcs.xml | 6 + .idea/workspace.xml | 267 ++++++++++++++++++ git_cs/__pycache__/__init__.cpython-36.pyc | Bin 138 -> 135 bytes git_cs/__pycache__/settings.cpython-36.pyc | Bin 2261 -> 2273 bytes git_cs/__pycache__/urls.cpython-36.pyc | Bin 972 -> 1011 bytes git_cs/__pycache__/wsgi.cpython-36.pyc | Bin 539 -> 536 bytes git_cs/settings.py | 1 + git_cs/urls.py | 1 + houjunjie/__init__.py | 0 houjunjie/__pycache__/__init__.cpython-36.pyc | Bin 0 -> 138 bytes houjunjie/__pycache__/admin.cpython-36.pyc | Bin 0 -> 179 bytes houjunjie/__pycache__/models.cpython-36.pyc | Bin 0 -> 176 bytes houjunjie/__pycache__/urls.cpython-36.pyc | Bin 0 -> 920 bytes houjunjie/__pycache__/views.cpython-36.pyc | Bin 0 -> 312 bytes houjunjie/admin.py | 3 + houjunjie/apps.py | 5 + houjunjie/migrations/__init__.py | 0 .../__pycache__/__init__.cpython-36.pyc | Bin 0 -> 149 bytes houjunjie/models.py | 3 + houjunjie/tests.py | 3 + houjunjie/urls.py | 22 ++ houjunjie/views.py | 6 + templates/houjunjie.html | 10 + templates/index.html | 2 +- 27 files changed, 375 insertions(+), 1 deletion(-) create mode 100644 .idea/1807c_git.iml create mode 100644 .idea/misc.xml create mode 100644 .idea/modules.xml create mode 100644 .idea/vcs.xml create mode 100644 .idea/workspace.xml create mode 100644 houjunjie/__init__.py create mode 100644 houjunjie/__pycache__/__init__.cpython-36.pyc create mode 100644 houjunjie/__pycache__/admin.cpython-36.pyc create mode 100644 houjunjie/__pycache__/models.cpython-36.pyc create mode 100644 houjunjie/__pycache__/urls.cpython-36.pyc create mode 100644 houjunjie/__pycache__/views.cpython-36.pyc create mode 100644 houjunjie/admin.py create mode 100644 houjunjie/apps.py create mode 100644 houjunjie/migrations/__init__.py create mode 100644 houjunjie/migrations/__pycache__/__init__.cpython-36.pyc create mode 100644 houjunjie/models.py create mode 100644 houjunjie/tests.py create mode 100644 houjunjie/urls.py create mode 100644 houjunjie/views.py create mode 100644 templates/houjunjie.html diff --git a/.idea/1807c_git.iml b/.idea/1807c_git.iml new file mode 100644 index 0000000..b5a9162 --- /dev/null +++ b/.idea/1807c_git.iml @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 0000000..7390deb --- /dev/null +++ b/.idea/misc.xml @@ -0,0 +1,7 @@ + + + + + + \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 0000000..b9796d4 --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..94a25f7 --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/.idea/workspace.xml b/.idea/workspace.xml new file mode 100644 index 0000000..054b8cd --- /dev/null +++ b/.idea/workspace.xml @@ -0,0 +1,267 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + true + DEFINITION_ORDER + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 1565867515084 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file -- Gitee