├── .gitignore ├── README.md ├── docs └── .gitkeep ├── manage.py ├── media └── products │ └── acer.jpg ├── requirements.txt ├── requirements_dev.txt ├── shopsys ├── __init__.py ├── apps │ ├── __init__.py │ ├── cart │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ └── __init__.py │ │ ├── models.py │ │ ├── tests.py │ │ └── views.py │ └── catalog │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── forms.py │ │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_auto_20160111_2248.py │ │ └── __init__.py │ │ ├── models.py │ │ ├── tests.py │ │ ├── urls.py │ │ └── views.py ├── settings.py ├── settings.py.bak ├── static │ ├── .gitkeep │ ├── css │ │ ├── .gitkeep │ │ └── base.css │ └── js │ │ └── .gitkeep ├── templates │ ├── .gitkeep │ ├── base.html │ ├── catalog.html │ ├── catalog │ │ ├── category.html │ │ ├── index.html │ │ └── product.html │ ├── index.html │ └── tags │ │ └── category_list.html ├── templatetags │ └── .gitkeep ├── urls.py ├── utils │ ├── __init__.py │ └── context_processors.py └── wsgi.py └── tests └── .gitkeep /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denglj/shopsys/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | shopsys readme 2 | /media/ : 存放用户上传文件 3 | -------------------------------------------------------------------------------- /docs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denglj/shopsys/HEAD/manage.py -------------------------------------------------------------------------------- /media/products/acer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denglj/shopsys/HEAD/media/products/acer.jpg -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | Django==1.8.5 2 | mysqlclient==1.3.6 3 | -------------------------------------------------------------------------------- /requirements_dev.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /shopsys/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /shopsys/apps/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /shopsys/apps/cart/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /shopsys/apps/cart/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denglj/shopsys/HEAD/shopsys/apps/cart/admin.py -------------------------------------------------------------------------------- /shopsys/apps/cart/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denglj/shopsys/HEAD/shopsys/apps/cart/migrations/0001_initial.py -------------------------------------------------------------------------------- /shopsys/apps/cart/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /shopsys/apps/cart/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denglj/shopsys/HEAD/shopsys/apps/cart/models.py -------------------------------------------------------------------------------- /shopsys/apps/cart/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denglj/shopsys/HEAD/shopsys/apps/cart/tests.py -------------------------------------------------------------------------------- /shopsys/apps/cart/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /shopsys/apps/catalog/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /shopsys/apps/catalog/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denglj/shopsys/HEAD/shopsys/apps/catalog/admin.py -------------------------------------------------------------------------------- /shopsys/apps/catalog/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denglj/shopsys/HEAD/shopsys/apps/catalog/forms.py -------------------------------------------------------------------------------- /shopsys/apps/catalog/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denglj/shopsys/HEAD/shopsys/apps/catalog/migrations/0001_initial.py -------------------------------------------------------------------------------- /shopsys/apps/catalog/migrations/0002_auto_20160111_2248.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denglj/shopsys/HEAD/shopsys/apps/catalog/migrations/0002_auto_20160111_2248.py -------------------------------------------------------------------------------- /shopsys/apps/catalog/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /shopsys/apps/catalog/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denglj/shopsys/HEAD/shopsys/apps/catalog/models.py -------------------------------------------------------------------------------- /shopsys/apps/catalog/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denglj/shopsys/HEAD/shopsys/apps/catalog/tests.py -------------------------------------------------------------------------------- /shopsys/apps/catalog/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denglj/shopsys/HEAD/shopsys/apps/catalog/urls.py -------------------------------------------------------------------------------- /shopsys/apps/catalog/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denglj/shopsys/HEAD/shopsys/apps/catalog/views.py -------------------------------------------------------------------------------- /shopsys/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denglj/shopsys/HEAD/shopsys/settings.py -------------------------------------------------------------------------------- /shopsys/settings.py.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denglj/shopsys/HEAD/shopsys/settings.py.bak -------------------------------------------------------------------------------- /shopsys/static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /shopsys/static/css/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /shopsys/static/css/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denglj/shopsys/HEAD/shopsys/static/css/base.css -------------------------------------------------------------------------------- /shopsys/static/js/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /shopsys/templates/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /shopsys/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denglj/shopsys/HEAD/shopsys/templates/base.html -------------------------------------------------------------------------------- /shopsys/templates/catalog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denglj/shopsys/HEAD/shopsys/templates/catalog.html -------------------------------------------------------------------------------- /shopsys/templates/catalog/category.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denglj/shopsys/HEAD/shopsys/templates/catalog/category.html -------------------------------------------------------------------------------- /shopsys/templates/catalog/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denglj/shopsys/HEAD/shopsys/templates/catalog/index.html -------------------------------------------------------------------------------- /shopsys/templates/catalog/product.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denglj/shopsys/HEAD/shopsys/templates/catalog/product.html -------------------------------------------------------------------------------- /shopsys/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denglj/shopsys/HEAD/shopsys/templates/index.html -------------------------------------------------------------------------------- /shopsys/templates/tags/category_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denglj/shopsys/HEAD/shopsys/templates/tags/category_list.html -------------------------------------------------------------------------------- /shopsys/templatetags/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /shopsys/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denglj/shopsys/HEAD/shopsys/urls.py -------------------------------------------------------------------------------- /shopsys/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /shopsys/utils/context_processors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denglj/shopsys/HEAD/shopsys/utils/context_processors.py -------------------------------------------------------------------------------- /shopsys/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denglj/shopsys/HEAD/shopsys/wsgi.py -------------------------------------------------------------------------------- /tests/.gitkeep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------