├── .gitattributes ├── .gitignore ├── .idea ├── .name ├── encodings.xml ├── misc.xml ├── modules.xml ├── storeproject.iml ├── vcs.xml └── workspace.xml ├── README.md ├── __pycache__ └── manage.cpython-34.pyc ├── imgs ├── 商品列表.png ├── 登录.png ├── 详情.png └── 购物车.png ├── log ├── all.log ├── error.log ├── script.log └── script.log.bak ├── manage.py ├── requirements.txt ├── static ├── css │ ├── bootstrap.css │ ├── flexslider.css │ ├── memenu.css │ ├── popuo-box.css │ └── style.css ├── fonts │ ├── OleoScript-Regular.ttf │ ├── Roboto-Regular.ttf │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ └── glyphicons-halflings-regular.woff2 ├── images │ ├── 1.jpg │ ├── 2.jpg │ ├── ba.jpg │ ├── ba1.jpg │ ├── cart.png │ ├── ce.jpg │ ├── ce1.jpg │ ├── ce2.jpg │ ├── logo.png │ ├── pi.png │ ├── pi1.png │ ├── pi2.png │ ├── pi3.png │ ├── pi4.png │ ├── pi5.png │ ├── pi6.png │ ├── pi7.png │ ├── pr.jpg │ ├── pr1.jpg │ ├── pr2.jpg │ ├── pr3.jpg │ ├── search.png │ ├── si.jpg │ ├── si1.jpg │ ├── si2.jpg │ └── tick1.png └── js │ ├── imagezoom.js │ ├── jquery.flexslider.js │ ├── jquery.magnific-popup.js │ ├── jquery.min.js │ ├── memenu.js │ ├── responsiveslides.min.js │ └── simpleCart.min.js ├── store ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-34.pyc │ ├── admin.cpython-34.pyc │ ├── forms.cpython-34.pyc │ ├── models.cpython-34.pyc │ ├── urls.cpython-34.pyc │ └── views.cpython-34.pyc ├── admin.py ├── forms.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_auto_20151111_1651.py │ ├── 0003_auto_20151111_2216.py │ ├── 0004_caritem_sum_price.py │ ├── __init__.py │ └── __pycache__ │ │ ├── 0001_initial.cpython-34.pyc │ │ ├── 0002_auto_20151111_1651.cpython-34.pyc │ │ ├── 0003_auto_20151111_2216.cpython-34.pyc │ │ ├── 0004_caritem_sum_price.cpython-34.pyc │ │ └── __init__.cpython-34.pyc ├── models.py ├── tests.py ├── urls.py └── views.py ├── storeproject ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-34.pyc │ ├── settings.cpython-34.pyc │ ├── urls.cpython-34.pyc │ └── wsgi.cpython-34.pyc ├── settings.py ├── urls.py └── wsgi.py ├── templates ├── ad.html ├── base.html ├── checkout.html ├── error.html ├── index.html ├── login.html ├── pagination.html ├── pro_right.html ├── products.html ├── register.html └── single.html └── uploads ├── ad └── 2015 │ └── 11 │ ├── 1.jpg │ └── 2.jpg └── clothing ├── 2015 └── 11 │ ├── a.jpg │ ├── b.jpg │ ├── c.jpg │ ├── ce.jpg │ ├── ce1.jpg │ ├── ce1_DPD6PNb.jpg │ ├── ce1_OWPx7bB.jpg │ ├── ce1_zvxnAn9.jpg │ ├── ce2.jpg │ ├── d.jpg │ ├── e.jpg │ ├── f.jpg │ ├── g.jpg │ ├── h.jpg │ ├── i.jpg │ ├── j.jpg │ ├── l.jpg │ ├── si.jpg │ ├── si1.jpg │ ├── si1_FAmpuiB.jpg │ ├── si1_JGp28VS.jpg │ ├── si1_MxuCcrt.jpg │ ├── si1_Q2FMBG9.jpg │ ├── si1_XauZnb6.jpg │ ├── si1_dWFylck.jpg │ ├── si1_dnRplnM.jpg │ ├── si1_pb3D1US.jpg │ ├── si1_rHAFiDN.jpg │ ├── si1_slFnIaa.jpg │ ├── si1_yuYAGuM.jpg │ ├── si1_zlZy93b.jpg │ ├── si2.jpg │ ├── si2_A2EmVXL.jpg │ ├── si2_BaRha9o.jpg │ ├── si2_Ln2lzkr.jpg │ ├── si2_OrNfbLQ.jpg │ ├── si2_PrrVqSn.jpg │ ├── si2_T8xjPN4.jpg │ ├── si2_WhzbtGD.jpg │ ├── si2_ZoPkqI0.jpg │ ├── si2_iqHi4lr.jpg │ ├── si2_j9Gl6o9.jpg │ ├── si2_mij9qge.jpg │ ├── si2_pA8GQeK.jpg │ ├── si_0372LO7.jpg │ ├── si_3epORC0.jpg │ ├── si_4OmgBG4.jpg │ ├── si_AHTKatM.jpg │ ├── si_JiYUgRt.jpg │ ├── si_L9CBOV8.jpg │ ├── si_MRP1DWG.jpg │ ├── si_SaP5j5w.jpg │ ├── si_VET713a.jpg │ ├── si_XGTS70N.jpg │ ├── si_iPWyupD.jpg │ ├── si_ihG5ytj.jpg │ ├── x.jpg │ └── z.jpg ├── ce.jpg └── default.jpg /.gitattributes: -------------------------------------------------------------------------------- 1 | *.js linguist-language=Python 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiJunWei/storeproject/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.name: -------------------------------------------------------------------------------- 1 | storeproject -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiJunWei/storeproject/HEAD/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiJunWei/storeproject/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiJunWei/storeproject/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/storeproject.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiJunWei/storeproject/HEAD/.idea/storeproject.iml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiJunWei/storeproject/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiJunWei/storeproject/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiJunWei/storeproject/HEAD/README.md -------------------------------------------------------------------------------- /__pycache__/manage.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiJunWei/storeproject/HEAD/__pycache__/manage.cpython-34.pyc -------------------------------------------------------------------------------- /imgs/商品列表.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiJunWei/storeproject/HEAD/imgs/商品列表.png -------------------------------------------------------------------------------- /imgs/登录.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiJunWei/storeproject/HEAD/imgs/登录.png -------------------------------------------------------------------------------- /imgs/详情.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiJunWei/storeproject/HEAD/imgs/详情.png -------------------------------------------------------------------------------- /imgs/购物车.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiJunWei/storeproject/HEAD/imgs/购物车.png -------------------------------------------------------------------------------- /log/all.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /log/error.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /log/script.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /log/script.log.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiJunWei/storeproject/HEAD/log/script.log.bak -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiJunWei/storeproject/HEAD/manage.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | Django==1.9.5 2 | PyMySQL==0.7.2 3 | -------------------------------------------------------------------------------- /static/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiJunWei/storeproject/HEAD/static/css/bootstrap.css -------------------------------------------------------------------------------- /static/css/flexslider.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiJunWei/storeproject/HEAD/static/css/flexslider.css -------------------------------------------------------------------------------- /static/css/memenu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiJunWei/storeproject/HEAD/static/css/memenu.css -------------------------------------------------------------------------------- /static/css/popuo-box.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiJunWei/storeproject/HEAD/static/css/popuo-box.css -------------------------------------------------------------------------------- /static/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiJunWei/storeproject/HEAD/static/css/style.css -------------------------------------------------------------------------------- /static/fonts/OleoScript-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiJunWei/storeproject/HEAD/static/fonts/OleoScript-Regular.ttf -------------------------------------------------------------------------------- /static/fonts/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiJunWei/storeproject/HEAD/static/fonts/Roboto-Regular.ttf -------------------------------------------------------------------------------- /static/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiJunWei/storeproject/HEAD/static/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /static/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiJunWei/storeproject/HEAD/static/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /static/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiJunWei/storeproject/HEAD/static/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /static/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiJunWei/storeproject/HEAD/static/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /static/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiJunWei/storeproject/HEAD/static/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /static/images/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiJunWei/storeproject/HEAD/static/images/1.jpg -------------------------------------------------------------------------------- /static/images/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiJunWei/storeproject/HEAD/static/images/2.jpg -------------------------------------------------------------------------------- /static/images/ba.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiJunWei/storeproject/HEAD/static/images/ba.jpg -------------------------------------------------------------------------------- /static/images/ba1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiJunWei/storeproject/HEAD/static/images/ba1.jpg -------------------------------------------------------------------------------- /static/images/cart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiJunWei/storeproject/HEAD/static/images/cart.png -------------------------------------------------------------------------------- /static/images/ce.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiJunWei/storeproject/HEAD/static/images/ce.jpg -------------------------------------------------------------------------------- /static/images/ce1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiJunWei/storeproject/HEAD/static/images/ce1.jpg -------------------------------------------------------------------------------- /static/images/ce2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiJunWei/storeproject/HEAD/static/images/ce2.jpg -------------------------------------------------------------------------------- /static/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiJunWei/storeproject/HEAD/static/images/logo.png -------------------------------------------------------------------------------- /static/images/pi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiJunWei/storeproject/HEAD/static/images/pi.png -------------------------------------------------------------------------------- /static/images/pi1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiJunWei/storeproject/HEAD/static/images/pi1.png -------------------------------------------------------------------------------- /static/images/pi2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiJunWei/storeproject/HEAD/static/images/pi2.png -------------------------------------------------------------------------------- /static/images/pi3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiJunWei/storeproject/HEAD/static/images/pi3.png -------------------------------------------------------------------------------- /static/images/pi4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiJunWei/storeproject/HEAD/static/images/pi4.png -------------------------------------------------------------------------------- /static/images/pi5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiJunWei/storeproject/HEAD/static/images/pi5.png -------------------------------------------------------------------------------- /static/images/pi6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiJunWei/storeproject/HEAD/static/images/pi6.png -------------------------------------------------------------------------------- /static/images/pi7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiJunWei/storeproject/HEAD/static/images/pi7.png -------------------------------------------------------------------------------- /static/images/pr.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiJunWei/storeproject/HEAD/static/images/pr.jpg -------------------------------------------------------------------------------- /static/images/pr1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiJunWei/storeproject/HEAD/static/images/pr1.jpg -------------------------------------------------------------------------------- /static/images/pr2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiJunWei/storeproject/HEAD/static/images/pr2.jpg -------------------------------------------------------------------------------- /static/images/pr3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiJunWei/storeproject/HEAD/static/images/pr3.jpg -------------------------------------------------------------------------------- /static/images/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiJunWei/storeproject/HEAD/static/images/search.png -------------------------------------------------------------------------------- /static/images/si.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiJunWei/storeproject/HEAD/static/images/si.jpg -------------------------------------------------------------------------------- /static/images/si1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiJunWei/storeproject/HEAD/static/images/si1.jpg -------------------------------------------------------------------------------- /static/images/si2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiJunWei/storeproject/HEAD/static/images/si2.jpg -------------------------------------------------------------------------------- /static/images/tick1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiJunWei/storeproject/HEAD/static/images/tick1.png -------------------------------------------------------------------------------- /static/js/imagezoom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiJunWei/storeproject/HEAD/static/js/imagezoom.js -------------------------------------------------------------------------------- /static/js/jquery.flexslider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiJunWei/storeproject/HEAD/static/js/jquery.flexslider.js -------------------------------------------------------------------------------- /static/js/jquery.magnific-popup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiJunWei/storeproject/HEAD/static/js/jquery.magnific-popup.js -------------------------------------------------------------------------------- /static/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiJunWei/storeproject/HEAD/static/js/jquery.min.js -------------------------------------------------------------------------------- /static/js/memenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiJunWei/storeproject/HEAD/static/js/memenu.js -------------------------------------------------------------------------------- /static/js/responsiveslides.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiJunWei/storeproject/HEAD/static/js/responsiveslides.min.js -------------------------------------------------------------------------------- /static/js/simpleCart.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiJunWei/storeproject/HEAD/static/js/simpleCart.min.js -------------------------------------------------------------------------------- /store/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiJunWei/storeproject/HEAD/store/__init__.py -------------------------------------------------------------------------------- /store/__pycache__/__init__.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiJunWei/storeproject/HEAD/store/__pycache__/__init__.cpython-34.pyc -------------------------------------------------------------------------------- /store/__pycache__/admin.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiJunWei/storeproject/HEAD/store/__pycache__/admin.cpython-34.pyc -------------------------------------------------------------------------------- /store/__pycache__/forms.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiJunWei/storeproject/HEAD/store/__pycache__/forms.cpython-34.pyc -------------------------------------------------------------------------------- /store/__pycache__/models.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiJunWei/storeproject/HEAD/store/__pycache__/models.cpython-34.pyc -------------------------------------------------------------------------------- /store/__pycache__/urls.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiJunWei/storeproject/HEAD/store/__pycache__/urls.cpython-34.pyc -------------------------------------------------------------------------------- /store/__pycache__/views.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiJunWei/storeproject/HEAD/store/__pycache__/views.cpython-34.pyc -------------------------------------------------------------------------------- /store/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiJunWei/storeproject/HEAD/store/admin.py -------------------------------------------------------------------------------- /store/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiJunWei/storeproject/HEAD/store/forms.py -------------------------------------------------------------------------------- /store/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiJunWei/storeproject/HEAD/store/migrations/0001_initial.py -------------------------------------------------------------------------------- /store/migrations/0002_auto_20151111_1651.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiJunWei/storeproject/HEAD/store/migrations/0002_auto_20151111_1651.py -------------------------------------------------------------------------------- /store/migrations/0003_auto_20151111_2216.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiJunWei/storeproject/HEAD/store/migrations/0003_auto_20151111_2216.py -------------------------------------------------------------------------------- /store/migrations/0004_caritem_sum_price.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiJunWei/storeproject/HEAD/store/migrations/0004_caritem_sum_price.py -------------------------------------------------------------------------------- /store/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /store/migrations/__pycache__/0001_initial.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiJunWei/storeproject/HEAD/store/migrations/__pycache__/0001_initial.cpython-34.pyc -------------------------------------------------------------------------------- /store/migrations/__pycache__/0002_auto_20151111_1651.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiJunWei/storeproject/HEAD/store/migrations/__pycache__/0002_auto_20151111_1651.cpython-34.pyc -------------------------------------------------------------------------------- /store/migrations/__pycache__/0003_auto_20151111_2216.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiJunWei/storeproject/HEAD/store/migrations/__pycache__/0003_auto_20151111_2216.cpython-34.pyc -------------------------------------------------------------------------------- /store/migrations/__pycache__/0004_caritem_sum_price.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiJunWei/storeproject/HEAD/store/migrations/__pycache__/0004_caritem_sum_price.cpython-34.pyc -------------------------------------------------------------------------------- /store/migrations/__pycache__/__init__.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiJunWei/storeproject/HEAD/store/migrations/__pycache__/__init__.cpython-34.pyc -------------------------------------------------------------------------------- /store/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiJunWei/storeproject/HEAD/store/models.py -------------------------------------------------------------------------------- /store/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiJunWei/storeproject/HEAD/store/tests.py -------------------------------------------------------------------------------- /store/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiJunWei/storeproject/HEAD/store/urls.py -------------------------------------------------------------------------------- /store/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiJunWei/storeproject/HEAD/store/views.py -------------------------------------------------------------------------------- /storeproject/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storeproject/__pycache__/__init__.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiJunWei/storeproject/HEAD/storeproject/__pycache__/__init__.cpython-34.pyc -------------------------------------------------------------------------------- /storeproject/__pycache__/settings.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiJunWei/storeproject/HEAD/storeproject/__pycache__/settings.cpython-34.pyc -------------------------------------------------------------------------------- /storeproject/__pycache__/urls.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiJunWei/storeproject/HEAD/storeproject/__pycache__/urls.cpython-34.pyc -------------------------------------------------------------------------------- /storeproject/__pycache__/wsgi.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiJunWei/storeproject/HEAD/storeproject/__pycache__/wsgi.cpython-34.pyc -------------------------------------------------------------------------------- /storeproject/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiJunWei/storeproject/HEAD/storeproject/settings.py -------------------------------------------------------------------------------- /storeproject/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiJunWei/storeproject/HEAD/storeproject/urls.py -------------------------------------------------------------------------------- /storeproject/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiJunWei/storeproject/HEAD/storeproject/wsgi.py -------------------------------------------------------------------------------- /templates/ad.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiJunWei/storeproject/HEAD/templates/ad.html -------------------------------------------------------------------------------- /templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiJunWei/storeproject/HEAD/templates/base.html -------------------------------------------------------------------------------- /templates/checkout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiJunWei/storeproject/HEAD/templates/checkout.html -------------------------------------------------------------------------------- /templates/error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiJunWei/storeproject/HEAD/templates/error.html -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiJunWei/storeproject/HEAD/templates/index.html -------------------------------------------------------------------------------- /templates/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiJunWei/storeproject/HEAD/templates/login.html -------------------------------------------------------------------------------- /templates/pagination.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiJunWei/storeproject/HEAD/templates/pagination.html -------------------------------------------------------------------------------- /templates/pro_right.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiJunWei/storeproject/HEAD/templates/pro_right.html -------------------------------------------------------------------------------- /templates/products.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiJunWei/storeproject/HEAD/templates/products.html -------------------------------------------------------------------------------- /templates/register.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiJunWei/storeproject/HEAD/templates/register.html -------------------------------------------------------------------------------- /templates/single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiJunWei/storeproject/HEAD/templates/single.html -------------------------------------------------------------------------------- /uploads/ad/2015/11/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiJunWei/storeproject/HEAD/uploads/ad/2015/11/1.jpg -------------------------------------------------------------------------------- /uploads/ad/2015/11/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiJunWei/storeproject/HEAD/uploads/ad/2015/11/2.jpg -------------------------------------------------------------------------------- /uploads/clothing/2015/11/a.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiJunWei/storeproject/HEAD/uploads/clothing/2015/11/a.jpg -------------------------------------------------------------------------------- /uploads/clothing/2015/11/b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiJunWei/storeproject/HEAD/uploads/clothing/2015/11/b.jpg -------------------------------------------------------------------------------- /uploads/clothing/2015/11/c.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiJunWei/storeproject/HEAD/uploads/clothing/2015/11/c.jpg -------------------------------------------------------------------------------- /uploads/clothing/2015/11/ce.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiJunWei/storeproject/HEAD/uploads/clothing/2015/11/ce.jpg -------------------------------------------------------------------------------- /uploads/clothing/2015/11/ce1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiJunWei/storeproject/HEAD/uploads/clothing/2015/11/ce1.jpg -------------------------------------------------------------------------------- /uploads/clothing/2015/11/ce1_DPD6PNb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiJunWei/storeproject/HEAD/uploads/clothing/2015/11/ce1_DPD6PNb.jpg -------------------------------------------------------------------------------- /uploads/clothing/2015/11/ce1_OWPx7bB.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiJunWei/storeproject/HEAD/uploads/clothing/2015/11/ce1_OWPx7bB.jpg -------------------------------------------------------------------------------- /uploads/clothing/2015/11/ce1_zvxnAn9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiJunWei/storeproject/HEAD/uploads/clothing/2015/11/ce1_zvxnAn9.jpg -------------------------------------------------------------------------------- /uploads/clothing/2015/11/ce2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiJunWei/storeproject/HEAD/uploads/clothing/2015/11/ce2.jpg -------------------------------------------------------------------------------- /uploads/clothing/2015/11/d.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiJunWei/storeproject/HEAD/uploads/clothing/2015/11/d.jpg -------------------------------------------------------------------------------- /uploads/clothing/2015/11/e.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiJunWei/storeproject/HEAD/uploads/clothing/2015/11/e.jpg -------------------------------------------------------------------------------- /uploads/clothing/2015/11/f.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiJunWei/storeproject/HEAD/uploads/clothing/2015/11/f.jpg -------------------------------------------------------------------------------- /uploads/clothing/2015/11/g.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiJunWei/storeproject/HEAD/uploads/clothing/2015/11/g.jpg -------------------------------------------------------------------------------- /uploads/clothing/2015/11/h.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiJunWei/storeproject/HEAD/uploads/clothing/2015/11/h.jpg -------------------------------------------------------------------------------- /uploads/clothing/2015/11/i.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiJunWei/storeproject/HEAD/uploads/clothing/2015/11/i.jpg -------------------------------------------------------------------------------- /uploads/clothing/2015/11/j.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiJunWei/storeproject/HEAD/uploads/clothing/2015/11/j.jpg -------------------------------------------------------------------------------- /uploads/clothing/2015/11/l.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiJunWei/storeproject/HEAD/uploads/clothing/2015/11/l.jpg -------------------------------------------------------------------------------- /uploads/clothing/2015/11/si.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiJunWei/storeproject/HEAD/uploads/clothing/2015/11/si.jpg -------------------------------------------------------------------------------- /uploads/clothing/2015/11/si1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiJunWei/storeproject/HEAD/uploads/clothing/2015/11/si1.jpg -------------------------------------------------------------------------------- /uploads/clothing/2015/11/si1_FAmpuiB.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiJunWei/storeproject/HEAD/uploads/clothing/2015/11/si1_FAmpuiB.jpg -------------------------------------------------------------------------------- /uploads/clothing/2015/11/si1_JGp28VS.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiJunWei/storeproject/HEAD/uploads/clothing/2015/11/si1_JGp28VS.jpg -------------------------------------------------------------------------------- /uploads/clothing/2015/11/si1_MxuCcrt.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiJunWei/storeproject/HEAD/uploads/clothing/2015/11/si1_MxuCcrt.jpg -------------------------------------------------------------------------------- /uploads/clothing/2015/11/si1_Q2FMBG9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiJunWei/storeproject/HEAD/uploads/clothing/2015/11/si1_Q2FMBG9.jpg -------------------------------------------------------------------------------- /uploads/clothing/2015/11/si1_XauZnb6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiJunWei/storeproject/HEAD/uploads/clothing/2015/11/si1_XauZnb6.jpg -------------------------------------------------------------------------------- /uploads/clothing/2015/11/si1_dWFylck.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiJunWei/storeproject/HEAD/uploads/clothing/2015/11/si1_dWFylck.jpg -------------------------------------------------------------------------------- /uploads/clothing/2015/11/si1_dnRplnM.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiJunWei/storeproject/HEAD/uploads/clothing/2015/11/si1_dnRplnM.jpg -------------------------------------------------------------------------------- /uploads/clothing/2015/11/si1_pb3D1US.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiJunWei/storeproject/HEAD/uploads/clothing/2015/11/si1_pb3D1US.jpg -------------------------------------------------------------------------------- /uploads/clothing/2015/11/si1_rHAFiDN.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiJunWei/storeproject/HEAD/uploads/clothing/2015/11/si1_rHAFiDN.jpg -------------------------------------------------------------------------------- /uploads/clothing/2015/11/si1_slFnIaa.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiJunWei/storeproject/HEAD/uploads/clothing/2015/11/si1_slFnIaa.jpg -------------------------------------------------------------------------------- /uploads/clothing/2015/11/si1_yuYAGuM.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiJunWei/storeproject/HEAD/uploads/clothing/2015/11/si1_yuYAGuM.jpg -------------------------------------------------------------------------------- /uploads/clothing/2015/11/si1_zlZy93b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiJunWei/storeproject/HEAD/uploads/clothing/2015/11/si1_zlZy93b.jpg -------------------------------------------------------------------------------- /uploads/clothing/2015/11/si2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiJunWei/storeproject/HEAD/uploads/clothing/2015/11/si2.jpg -------------------------------------------------------------------------------- /uploads/clothing/2015/11/si2_A2EmVXL.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiJunWei/storeproject/HEAD/uploads/clothing/2015/11/si2_A2EmVXL.jpg -------------------------------------------------------------------------------- /uploads/clothing/2015/11/si2_BaRha9o.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiJunWei/storeproject/HEAD/uploads/clothing/2015/11/si2_BaRha9o.jpg -------------------------------------------------------------------------------- /uploads/clothing/2015/11/si2_Ln2lzkr.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiJunWei/storeproject/HEAD/uploads/clothing/2015/11/si2_Ln2lzkr.jpg -------------------------------------------------------------------------------- /uploads/clothing/2015/11/si2_OrNfbLQ.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiJunWei/storeproject/HEAD/uploads/clothing/2015/11/si2_OrNfbLQ.jpg -------------------------------------------------------------------------------- /uploads/clothing/2015/11/si2_PrrVqSn.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiJunWei/storeproject/HEAD/uploads/clothing/2015/11/si2_PrrVqSn.jpg -------------------------------------------------------------------------------- /uploads/clothing/2015/11/si2_T8xjPN4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiJunWei/storeproject/HEAD/uploads/clothing/2015/11/si2_T8xjPN4.jpg -------------------------------------------------------------------------------- /uploads/clothing/2015/11/si2_WhzbtGD.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiJunWei/storeproject/HEAD/uploads/clothing/2015/11/si2_WhzbtGD.jpg -------------------------------------------------------------------------------- /uploads/clothing/2015/11/si2_ZoPkqI0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiJunWei/storeproject/HEAD/uploads/clothing/2015/11/si2_ZoPkqI0.jpg -------------------------------------------------------------------------------- /uploads/clothing/2015/11/si2_iqHi4lr.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiJunWei/storeproject/HEAD/uploads/clothing/2015/11/si2_iqHi4lr.jpg -------------------------------------------------------------------------------- /uploads/clothing/2015/11/si2_j9Gl6o9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiJunWei/storeproject/HEAD/uploads/clothing/2015/11/si2_j9Gl6o9.jpg -------------------------------------------------------------------------------- /uploads/clothing/2015/11/si2_mij9qge.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiJunWei/storeproject/HEAD/uploads/clothing/2015/11/si2_mij9qge.jpg -------------------------------------------------------------------------------- /uploads/clothing/2015/11/si2_pA8GQeK.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiJunWei/storeproject/HEAD/uploads/clothing/2015/11/si2_pA8GQeK.jpg -------------------------------------------------------------------------------- /uploads/clothing/2015/11/si_0372LO7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiJunWei/storeproject/HEAD/uploads/clothing/2015/11/si_0372LO7.jpg -------------------------------------------------------------------------------- /uploads/clothing/2015/11/si_3epORC0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiJunWei/storeproject/HEAD/uploads/clothing/2015/11/si_3epORC0.jpg -------------------------------------------------------------------------------- /uploads/clothing/2015/11/si_4OmgBG4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiJunWei/storeproject/HEAD/uploads/clothing/2015/11/si_4OmgBG4.jpg -------------------------------------------------------------------------------- /uploads/clothing/2015/11/si_AHTKatM.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiJunWei/storeproject/HEAD/uploads/clothing/2015/11/si_AHTKatM.jpg -------------------------------------------------------------------------------- /uploads/clothing/2015/11/si_JiYUgRt.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiJunWei/storeproject/HEAD/uploads/clothing/2015/11/si_JiYUgRt.jpg -------------------------------------------------------------------------------- /uploads/clothing/2015/11/si_L9CBOV8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiJunWei/storeproject/HEAD/uploads/clothing/2015/11/si_L9CBOV8.jpg -------------------------------------------------------------------------------- /uploads/clothing/2015/11/si_MRP1DWG.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiJunWei/storeproject/HEAD/uploads/clothing/2015/11/si_MRP1DWG.jpg -------------------------------------------------------------------------------- /uploads/clothing/2015/11/si_SaP5j5w.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiJunWei/storeproject/HEAD/uploads/clothing/2015/11/si_SaP5j5w.jpg -------------------------------------------------------------------------------- /uploads/clothing/2015/11/si_VET713a.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiJunWei/storeproject/HEAD/uploads/clothing/2015/11/si_VET713a.jpg -------------------------------------------------------------------------------- /uploads/clothing/2015/11/si_XGTS70N.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiJunWei/storeproject/HEAD/uploads/clothing/2015/11/si_XGTS70N.jpg -------------------------------------------------------------------------------- /uploads/clothing/2015/11/si_iPWyupD.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiJunWei/storeproject/HEAD/uploads/clothing/2015/11/si_iPWyupD.jpg -------------------------------------------------------------------------------- /uploads/clothing/2015/11/si_ihG5ytj.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiJunWei/storeproject/HEAD/uploads/clothing/2015/11/si_ihG5ytj.jpg -------------------------------------------------------------------------------- /uploads/clothing/2015/11/x.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiJunWei/storeproject/HEAD/uploads/clothing/2015/11/x.jpg -------------------------------------------------------------------------------- /uploads/clothing/2015/11/z.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiJunWei/storeproject/HEAD/uploads/clothing/2015/11/z.jpg -------------------------------------------------------------------------------- /uploads/clothing/ce.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiJunWei/storeproject/HEAD/uploads/clothing/ce.jpg -------------------------------------------------------------------------------- /uploads/clothing/default.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiJunWei/storeproject/HEAD/uploads/clothing/default.jpg --------------------------------------------------------------------------------