├── .gitignore ├── buyandsell ├── __init__.py ├── settings.py ├── urls.py └── wsgi.py ├── cart ├── __init__.py ├── admin.py ├── apps.py ├── migrations │ └── __init__.py ├── models.py ├── tests.py └── views.py ├── core ├── __init__.py ├── admin.py ├── apps.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_productcategory_photo.py │ ├── 0003_auto_20180831_1528.py │ ├── 0004_auto_20180902_1342.py │ └── __init__.py ├── models.py ├── static │ ├── css │ │ ├── bootstrap.css │ │ └── main.css │ ├── images │ │ ├── contacts_icon.jpeg │ │ ├── favicon-32x32.png │ │ └── logo.png │ └── js │ │ ├── bootstrap.js │ │ ├── jquery.js │ │ └── main.js ├── templates │ ├── base.html │ ├── core │ │ ├── product_delete_form.html │ │ ├── product_detail.html │ │ ├── product_form.html │ │ ├── product_list.html │ │ └── product_update_form.html │ └── index.html ├── tests.py ├── urls.py └── views.py └── manage.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binel01/buyandsell/HEAD/.gitignore -------------------------------------------------------------------------------- /buyandsell/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /buyandsell/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binel01/buyandsell/HEAD/buyandsell/settings.py -------------------------------------------------------------------------------- /buyandsell/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binel01/buyandsell/HEAD/buyandsell/urls.py -------------------------------------------------------------------------------- /buyandsell/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binel01/buyandsell/HEAD/buyandsell/wsgi.py -------------------------------------------------------------------------------- /cart/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cart/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binel01/buyandsell/HEAD/cart/admin.py -------------------------------------------------------------------------------- /cart/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binel01/buyandsell/HEAD/cart/apps.py -------------------------------------------------------------------------------- /cart/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cart/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binel01/buyandsell/HEAD/cart/models.py -------------------------------------------------------------------------------- /cart/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binel01/buyandsell/HEAD/cart/tests.py -------------------------------------------------------------------------------- /cart/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binel01/buyandsell/HEAD/cart/views.py -------------------------------------------------------------------------------- /core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binel01/buyandsell/HEAD/core/admin.py -------------------------------------------------------------------------------- /core/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binel01/buyandsell/HEAD/core/apps.py -------------------------------------------------------------------------------- /core/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binel01/buyandsell/HEAD/core/migrations/0001_initial.py -------------------------------------------------------------------------------- /core/migrations/0002_productcategory_photo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binel01/buyandsell/HEAD/core/migrations/0002_productcategory_photo.py -------------------------------------------------------------------------------- /core/migrations/0003_auto_20180831_1528.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binel01/buyandsell/HEAD/core/migrations/0003_auto_20180831_1528.py -------------------------------------------------------------------------------- /core/migrations/0004_auto_20180902_1342.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binel01/buyandsell/HEAD/core/migrations/0004_auto_20180902_1342.py -------------------------------------------------------------------------------- /core/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binel01/buyandsell/HEAD/core/models.py -------------------------------------------------------------------------------- /core/static/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binel01/buyandsell/HEAD/core/static/css/bootstrap.css -------------------------------------------------------------------------------- /core/static/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binel01/buyandsell/HEAD/core/static/css/main.css -------------------------------------------------------------------------------- /core/static/images/contacts_icon.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binel01/buyandsell/HEAD/core/static/images/contacts_icon.jpeg -------------------------------------------------------------------------------- /core/static/images/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binel01/buyandsell/HEAD/core/static/images/favicon-32x32.png -------------------------------------------------------------------------------- /core/static/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binel01/buyandsell/HEAD/core/static/images/logo.png -------------------------------------------------------------------------------- /core/static/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binel01/buyandsell/HEAD/core/static/js/bootstrap.js -------------------------------------------------------------------------------- /core/static/js/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binel01/buyandsell/HEAD/core/static/js/jquery.js -------------------------------------------------------------------------------- /core/static/js/main.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binel01/buyandsell/HEAD/core/templates/base.html -------------------------------------------------------------------------------- /core/templates/core/product_delete_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binel01/buyandsell/HEAD/core/templates/core/product_delete_form.html -------------------------------------------------------------------------------- /core/templates/core/product_detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binel01/buyandsell/HEAD/core/templates/core/product_detail.html -------------------------------------------------------------------------------- /core/templates/core/product_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binel01/buyandsell/HEAD/core/templates/core/product_form.html -------------------------------------------------------------------------------- /core/templates/core/product_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binel01/buyandsell/HEAD/core/templates/core/product_list.html -------------------------------------------------------------------------------- /core/templates/core/product_update_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binel01/buyandsell/HEAD/core/templates/core/product_update_form.html -------------------------------------------------------------------------------- /core/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binel01/buyandsell/HEAD/core/templates/index.html -------------------------------------------------------------------------------- /core/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binel01/buyandsell/HEAD/core/tests.py -------------------------------------------------------------------------------- /core/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binel01/buyandsell/HEAD/core/urls.py -------------------------------------------------------------------------------- /core/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binel01/buyandsell/HEAD/core/views.py -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binel01/buyandsell/HEAD/manage.py --------------------------------------------------------------------------------