├── .DS_Store ├── .gitignore ├── .vscode └── settings.json ├── README.md ├── socar ├── .DS_Store ├── db.sqlite3 ├── manage.py ├── restfulshop │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ └── __init__.py │ ├── models.py │ ├── tests.py │ ├── urls.py │ └── views.py ├── shop │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── forms.py │ ├── middles.py │ ├── migrations │ │ ├── 0001_initial.py │ │ └── __init__.py │ ├── models.py │ ├── static │ │ └── media │ │ │ ├── imgs │ │ │ ├── 640.jpg │ │ │ └── 下载.jpeg │ │ │ └── upload │ │ │ └── 2018 │ │ │ └── 05 │ │ │ └── 22 │ │ │ └── 8c1001e93901213fab66256a58e736d12f2e952a.jpg │ ├── templates │ │ ├── base.html │ │ ├── buy.html │ │ ├── carinfo.html │ │ ├── create.html │ │ ├── foot.html │ │ ├── index.html │ │ ├── info.html │ │ ├── login.html │ │ ├── nav.html │ │ ├── perinfo.html │ │ └── tmp.html │ ├── templatetags │ │ ├── __init__.py │ │ └── upper.py │ ├── tests.py │ ├── urls.py │ └── views.py └── socar │ ├── __init__.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py └── tests └── .gitkeep /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxduck/Shop/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxduck/Shop/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxduck/Shop/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxduck/Shop/HEAD/README.md -------------------------------------------------------------------------------- /socar/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxduck/Shop/HEAD/socar/.DS_Store -------------------------------------------------------------------------------- /socar/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxduck/Shop/HEAD/socar/db.sqlite3 -------------------------------------------------------------------------------- /socar/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxduck/Shop/HEAD/socar/manage.py -------------------------------------------------------------------------------- /socar/restfulshop/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /socar/restfulshop/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxduck/Shop/HEAD/socar/restfulshop/admin.py -------------------------------------------------------------------------------- /socar/restfulshop/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxduck/Shop/HEAD/socar/restfulshop/apps.py -------------------------------------------------------------------------------- /socar/restfulshop/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /socar/restfulshop/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxduck/Shop/HEAD/socar/restfulshop/models.py -------------------------------------------------------------------------------- /socar/restfulshop/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxduck/Shop/HEAD/socar/restfulshop/tests.py -------------------------------------------------------------------------------- /socar/restfulshop/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxduck/Shop/HEAD/socar/restfulshop/urls.py -------------------------------------------------------------------------------- /socar/restfulshop/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxduck/Shop/HEAD/socar/restfulshop/views.py -------------------------------------------------------------------------------- /socar/shop/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /socar/shop/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxduck/Shop/HEAD/socar/shop/admin.py -------------------------------------------------------------------------------- /socar/shop/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxduck/Shop/HEAD/socar/shop/apps.py -------------------------------------------------------------------------------- /socar/shop/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxduck/Shop/HEAD/socar/shop/forms.py -------------------------------------------------------------------------------- /socar/shop/middles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxduck/Shop/HEAD/socar/shop/middles.py -------------------------------------------------------------------------------- /socar/shop/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxduck/Shop/HEAD/socar/shop/migrations/0001_initial.py -------------------------------------------------------------------------------- /socar/shop/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /socar/shop/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxduck/Shop/HEAD/socar/shop/models.py -------------------------------------------------------------------------------- /socar/shop/static/media/imgs/640.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxduck/Shop/HEAD/socar/shop/static/media/imgs/640.jpg -------------------------------------------------------------------------------- /socar/shop/static/media/imgs/下载.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxduck/Shop/HEAD/socar/shop/static/media/imgs/下载.jpeg -------------------------------------------------------------------------------- /socar/shop/static/media/upload/2018/05/22/8c1001e93901213fab66256a58e736d12f2e952a.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxduck/Shop/HEAD/socar/shop/static/media/upload/2018/05/22/8c1001e93901213fab66256a58e736d12f2e952a.jpg -------------------------------------------------------------------------------- /socar/shop/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxduck/Shop/HEAD/socar/shop/templates/base.html -------------------------------------------------------------------------------- /socar/shop/templates/buy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxduck/Shop/HEAD/socar/shop/templates/buy.html -------------------------------------------------------------------------------- /socar/shop/templates/carinfo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxduck/Shop/HEAD/socar/shop/templates/carinfo.html -------------------------------------------------------------------------------- /socar/shop/templates/create.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxduck/Shop/HEAD/socar/shop/templates/create.html -------------------------------------------------------------------------------- /socar/shop/templates/foot.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxduck/Shop/HEAD/socar/shop/templates/foot.html -------------------------------------------------------------------------------- /socar/shop/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxduck/Shop/HEAD/socar/shop/templates/index.html -------------------------------------------------------------------------------- /socar/shop/templates/info.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxduck/Shop/HEAD/socar/shop/templates/info.html -------------------------------------------------------------------------------- /socar/shop/templates/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxduck/Shop/HEAD/socar/shop/templates/login.html -------------------------------------------------------------------------------- /socar/shop/templates/nav.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxduck/Shop/HEAD/socar/shop/templates/nav.html -------------------------------------------------------------------------------- /socar/shop/templates/perinfo.html: -------------------------------------------------------------------------------- 1 | {% extends "base.html" %} 2 | 3 | -------------------------------------------------------------------------------- /socar/shop/templates/tmp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxduck/Shop/HEAD/socar/shop/templates/tmp.html -------------------------------------------------------------------------------- /socar/shop/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /socar/shop/templatetags/upper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxduck/Shop/HEAD/socar/shop/templatetags/upper.py -------------------------------------------------------------------------------- /socar/shop/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxduck/Shop/HEAD/socar/shop/tests.py -------------------------------------------------------------------------------- /socar/shop/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxduck/Shop/HEAD/socar/shop/urls.py -------------------------------------------------------------------------------- /socar/shop/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxduck/Shop/HEAD/socar/shop/views.py -------------------------------------------------------------------------------- /socar/socar/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /socar/socar/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxduck/Shop/HEAD/socar/socar/settings.py -------------------------------------------------------------------------------- /socar/socar/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxduck/Shop/HEAD/socar/socar/urls.py -------------------------------------------------------------------------------- /socar/socar/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxduck/Shop/HEAD/socar/socar/wsgi.py -------------------------------------------------------------------------------- /tests/.gitkeep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------