From 5286cd69876ee34e295e2c63b04d3b3e24db8d05 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=93=B6=E5=AD=90NANANA?= <1561489484@qq.com> Date: Fri, 16 Aug 2019 11:58:54 +0800 Subject: [PATCH 1/3] clp --- .idea/1807c_git.iml | 31 ++ .idea/misc.xml | 7 + .idea/modules.xml | 8 + .idea/vcs.xml | 6 + .idea/workspace.xml | 285 ++++++++++++++++++ clp/__init__.py | 0 clp/__pycache__/__init__.cpython-36.pyc | Bin 0 -> 130 bytes clp/__pycache__/admin.cpython-36.pyc | Bin 0 -> 171 bytes clp/__pycache__/models.cpython-36.pyc | Bin 0 -> 168 bytes clp/__pycache__/urls.cpython-36.pyc | Bin 0 -> 267 bytes clp/__pycache__/views.cpython-36.pyc | Bin 0 -> 292 bytes clp/admin.py | 3 + clp/apps.py | 5 + clp/migrations/__init__.py | 0 .../__pycache__/__init__.cpython-36.pyc | Bin 0 -> 141 bytes clp/models.py | 3 + clp/tests.py | 3 + clp/urls.py | 9 + clp/views.py | 5 + git_cs/__pycache__/__init__.cpython-36.pyc | Bin 138 -> 133 bytes git_cs/__pycache__/settings.cpython-36.pyc | Bin 2261 -> 2265 bytes git_cs/__pycache__/urls.cpython-36.pyc | Bin 972 -> 996 bytes git_cs/__pycache__/wsgi.cpython-36.pyc | Bin 539 -> 534 bytes git_cs/settings.py | 1 + git_cs/urls.py | 1 + templates/clp.html | 10 + templates/index.html | 2 +- 27 files changed, 378 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 clp/__init__.py create mode 100644 clp/__pycache__/__init__.cpython-36.pyc create mode 100644 clp/__pycache__/admin.cpython-36.pyc create mode 100644 clp/__pycache__/models.cpython-36.pyc create mode 100644 clp/__pycache__/urls.cpython-36.pyc create mode 100644 clp/__pycache__/views.cpython-36.pyc create mode 100644 clp/admin.py create mode 100644 clp/apps.py create mode 100644 clp/migrations/__init__.py create mode 100644 clp/migrations/__pycache__/__init__.cpython-36.pyc create mode 100644 clp/models.py create mode 100644 clp/tests.py create mode 100644 clp/urls.py create mode 100644 clp/views.py create mode 100644 templates/clp.html diff --git a/.idea/1807c_git.iml b/.idea/1807c_git.iml new file mode 100644 index 0000000..f55066a --- /dev/null +++ b/.idea/1807c_git.iml @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 0000000..72f3aeb --- /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..194590f --- /dev/null +++ b/.idea/workspace.xml @@ -0,0 +1,285 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + true + DEFINITION_ORDER + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - @@ -210,7 +166,7 @@ - + - - - - - - - - - - - - - - - - + + - - + + + + + + - - - - - - - - - - - + + + + + - + + @@ -310,6 +251,68 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -368,34 +371,15 @@ - - - - - - - - - - - - - - - - - - - - - + + - + @@ -409,19 +393,38 @@ - + - - + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/templates/index.html b/templates/index.html index 0bf7e50..e90d922 100644 --- a/templates/index.html +++ b/templates/index.html @@ -19,7 +19,7 @@
  • laofan
  • -
  • clp
  • +
  • 崔丽苹
  • 李艺超
  • -- Gitee From 1318b638f6994dec3b5896f42226530b67154e26 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=93=B6=E5=AD=90NANANA?= <1561489484@qq.com> Date: Fri, 16 Aug 2019 15:09:14 +0800 Subject: [PATCH 3/3] aa --- .idea/1807c_git.iml | 31 +++++++++ .idea/misc.xml | 7 ++ .idea/modules.xml | 8 +++ .idea/vcs.xml | 6 ++ .idea/workspace.xml | 162 +++++++++++++++++++++++++++----------------- clp/urls.py | 1 - 6 files changed, 152 insertions(+), 63 deletions(-) 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 diff --git a/.idea/1807c_git.iml b/.idea/1807c_git.iml new file mode 100644 index 0000000..6f457f0 --- /dev/null +++ b/.idea/1807c_git.iml @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 0000000..72f3aeb --- /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 index 8e64fbc..e170978 100644 --- a/.idea/workspace.xml +++ b/.idea/workspace.xml @@ -2,13 +2,8 @@ - - - - - - + @@ -187,9 +169,8 @@