├── .gitignore ├── README.md ├── requirenments.pip └── server ├── accounts ├── __init__.py ├── admin.py ├── apps.py ├── forms.py ├── migrations │ ├── 0001_initial.py │ └── __init__.py ├── models.py ├── templates │ └── accounts │ │ ├── delete.html │ │ ├── login.html │ │ └── registration.html ├── tests.py ├── urls.py └── views.py ├── db.sqlite ├── main ├── __init__.py ├── admin.py ├── apps.py ├── migrations │ └── __init__.py ├── models.py ├── static │ └── main │ │ ├── css │ │ ├── contacts.css │ │ └── index.css │ │ └── img │ │ ├── brands │ │ ├── bondibon.png │ │ ├── castorland.png │ │ ├── crowd_games.jpg │ │ ├── gaga2.png │ │ ├── hobby_world.png │ │ ├── ni.png │ │ ├── umbum.png │ │ └── zvezda.gif │ │ └── instagram │ │ ├── 1.jpg │ │ ├── 2.jpg │ │ ├── 3.jpg │ │ ├── 4.jpeg │ │ ├── 5.jpg │ │ └── 6.jpg ├── templates │ └── main │ │ ├── contacts.html │ │ └── index.html ├── tests.py ├── urls.py └── views.py ├── manage.py ├── media ├── accounts │ └── default.png └── products_images │ ├── default.png │ ├── karkasson.jpg │ ├── machi-koro.jpg │ ├── manchkin.jpg │ └── tainiy_gorod.jpg ├── products ├── __init__.py ├── admin.py ├── apps.py ├── fixtures │ └── data │ │ └── data.json ├── forms │ ├── __init__.py │ ├── categories.py │ └── products.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_auto_20190320_2040.py │ ├── 0003_auto_20190320_2042.py │ ├── 0004_auto_20190324_1950.py │ ├── 0005_auto_20190325_1312.py │ ├── 0006_auto_20190407_0737.py │ ├── 0007_auto_20190407_1306.py │ └── __init__.py ├── models.py ├── serializers │ ├── __init__.py │ ├── categories.py │ └── products.py ├── static │ └── products │ │ ├── css │ │ ├── picture.css │ │ └── product.css │ │ └── img │ │ ├── default.png │ │ ├── karkasson.jpg │ │ ├── machi-koro.jpg │ │ ├── manchkin.jpg │ │ └── tainiy_gorod.jpg ├── templates │ ├── categories │ │ ├── create.html │ │ ├── delete.html │ │ ├── detail.html │ │ ├── index.html │ │ └── update.html │ └── products │ │ ├── components │ │ └── picture.html │ │ ├── create.html │ │ ├── delete.html │ │ ├── detail.html │ │ ├── index.html │ │ └── update.html ├── tests.py ├── urls │ ├── __init__.py │ ├── categories.py │ └── products.py ├── views │ ├── __init__.py │ ├── categories.py │ └── products.py └── viewsets │ ├── __init__.py │ ├── categories.py │ └── products.py └── server ├── __init__.py ├── settings.py ├── static └── server │ ├── css │ ├── base.css │ ├── crud.css │ └── menu.css │ ├── fonts │ ├── Raleway-Black-Italic.ttf │ ├── Raleway-ExtraBold.ttf │ ├── Roboto-Black-Italic.ttf │ ├── Roboto-Black.ttf │ └── Roboto-Regular.ttf │ └── img │ ├── games.jpg │ ├── hot.png │ ├── logo.png │ ├── new.png │ ├── payment_methods │ ├── american-express.jpg │ ├── discover.jpg │ ├── maestro.jpg │ ├── master-card.jpg │ ├── paypal.jpg │ └── visa.jpg │ └── shop.jpg ├── templates └── server │ ├── base.html │ └── includes │ ├── inc_category.html │ ├── inc_form.html │ ├── inc_main_menu.html │ ├── inc_pagination.html │ └── inc_product.html ├── urls.py └── wsgi.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shorh/GB_Python_Django/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shorh/GB_Python_Django/HEAD/README.md -------------------------------------------------------------------------------- /requirenments.pip: -------------------------------------------------------------------------------- 1 | Django==2.1.7 2 | Pillow==5.4.1 3 | -------------------------------------------------------------------------------- /server/accounts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/accounts/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shorh/GB_Python_Django/HEAD/server/accounts/admin.py -------------------------------------------------------------------------------- /server/accounts/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shorh/GB_Python_Django/HEAD/server/accounts/apps.py -------------------------------------------------------------------------------- /server/accounts/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shorh/GB_Python_Django/HEAD/server/accounts/forms.py -------------------------------------------------------------------------------- /server/accounts/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shorh/GB_Python_Django/HEAD/server/accounts/migrations/0001_initial.py -------------------------------------------------------------------------------- /server/accounts/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/accounts/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shorh/GB_Python_Django/HEAD/server/accounts/models.py -------------------------------------------------------------------------------- /server/accounts/templates/accounts/delete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shorh/GB_Python_Django/HEAD/server/accounts/templates/accounts/delete.html -------------------------------------------------------------------------------- /server/accounts/templates/accounts/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shorh/GB_Python_Django/HEAD/server/accounts/templates/accounts/login.html -------------------------------------------------------------------------------- /server/accounts/templates/accounts/registration.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shorh/GB_Python_Django/HEAD/server/accounts/templates/accounts/registration.html -------------------------------------------------------------------------------- /server/accounts/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shorh/GB_Python_Django/HEAD/server/accounts/tests.py -------------------------------------------------------------------------------- /server/accounts/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shorh/GB_Python_Django/HEAD/server/accounts/urls.py -------------------------------------------------------------------------------- /server/accounts/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shorh/GB_Python_Django/HEAD/server/accounts/views.py -------------------------------------------------------------------------------- /server/db.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shorh/GB_Python_Django/HEAD/server/db.sqlite -------------------------------------------------------------------------------- /server/main/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/main/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shorh/GB_Python_Django/HEAD/server/main/admin.py -------------------------------------------------------------------------------- /server/main/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shorh/GB_Python_Django/HEAD/server/main/apps.py -------------------------------------------------------------------------------- /server/main/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/main/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shorh/GB_Python_Django/HEAD/server/main/models.py -------------------------------------------------------------------------------- /server/main/static/main/css/contacts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shorh/GB_Python_Django/HEAD/server/main/static/main/css/contacts.css -------------------------------------------------------------------------------- /server/main/static/main/css/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shorh/GB_Python_Django/HEAD/server/main/static/main/css/index.css -------------------------------------------------------------------------------- /server/main/static/main/img/brands/bondibon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shorh/GB_Python_Django/HEAD/server/main/static/main/img/brands/bondibon.png -------------------------------------------------------------------------------- /server/main/static/main/img/brands/castorland.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shorh/GB_Python_Django/HEAD/server/main/static/main/img/brands/castorland.png -------------------------------------------------------------------------------- /server/main/static/main/img/brands/crowd_games.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shorh/GB_Python_Django/HEAD/server/main/static/main/img/brands/crowd_games.jpg -------------------------------------------------------------------------------- /server/main/static/main/img/brands/gaga2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shorh/GB_Python_Django/HEAD/server/main/static/main/img/brands/gaga2.png -------------------------------------------------------------------------------- /server/main/static/main/img/brands/hobby_world.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shorh/GB_Python_Django/HEAD/server/main/static/main/img/brands/hobby_world.png -------------------------------------------------------------------------------- /server/main/static/main/img/brands/ni.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shorh/GB_Python_Django/HEAD/server/main/static/main/img/brands/ni.png -------------------------------------------------------------------------------- /server/main/static/main/img/brands/umbum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shorh/GB_Python_Django/HEAD/server/main/static/main/img/brands/umbum.png -------------------------------------------------------------------------------- /server/main/static/main/img/brands/zvezda.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shorh/GB_Python_Django/HEAD/server/main/static/main/img/brands/zvezda.gif -------------------------------------------------------------------------------- /server/main/static/main/img/instagram/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shorh/GB_Python_Django/HEAD/server/main/static/main/img/instagram/1.jpg -------------------------------------------------------------------------------- /server/main/static/main/img/instagram/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shorh/GB_Python_Django/HEAD/server/main/static/main/img/instagram/2.jpg -------------------------------------------------------------------------------- /server/main/static/main/img/instagram/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shorh/GB_Python_Django/HEAD/server/main/static/main/img/instagram/3.jpg -------------------------------------------------------------------------------- /server/main/static/main/img/instagram/4.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shorh/GB_Python_Django/HEAD/server/main/static/main/img/instagram/4.jpeg -------------------------------------------------------------------------------- /server/main/static/main/img/instagram/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shorh/GB_Python_Django/HEAD/server/main/static/main/img/instagram/5.jpg -------------------------------------------------------------------------------- /server/main/static/main/img/instagram/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shorh/GB_Python_Django/HEAD/server/main/static/main/img/instagram/6.jpg -------------------------------------------------------------------------------- /server/main/templates/main/contacts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shorh/GB_Python_Django/HEAD/server/main/templates/main/contacts.html -------------------------------------------------------------------------------- /server/main/templates/main/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shorh/GB_Python_Django/HEAD/server/main/templates/main/index.html -------------------------------------------------------------------------------- /server/main/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shorh/GB_Python_Django/HEAD/server/main/tests.py -------------------------------------------------------------------------------- /server/main/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shorh/GB_Python_Django/HEAD/server/main/urls.py -------------------------------------------------------------------------------- /server/main/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shorh/GB_Python_Django/HEAD/server/main/views.py -------------------------------------------------------------------------------- /server/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shorh/GB_Python_Django/HEAD/server/manage.py -------------------------------------------------------------------------------- /server/media/accounts/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shorh/GB_Python_Django/HEAD/server/media/accounts/default.png -------------------------------------------------------------------------------- /server/media/products_images/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shorh/GB_Python_Django/HEAD/server/media/products_images/default.png -------------------------------------------------------------------------------- /server/media/products_images/karkasson.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shorh/GB_Python_Django/HEAD/server/media/products_images/karkasson.jpg -------------------------------------------------------------------------------- /server/media/products_images/machi-koro.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shorh/GB_Python_Django/HEAD/server/media/products_images/machi-koro.jpg -------------------------------------------------------------------------------- /server/media/products_images/manchkin.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shorh/GB_Python_Django/HEAD/server/media/products_images/manchkin.jpg -------------------------------------------------------------------------------- /server/media/products_images/tainiy_gorod.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shorh/GB_Python_Django/HEAD/server/media/products_images/tainiy_gorod.jpg -------------------------------------------------------------------------------- /server/products/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/products/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shorh/GB_Python_Django/HEAD/server/products/admin.py -------------------------------------------------------------------------------- /server/products/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shorh/GB_Python_Django/HEAD/server/products/apps.py -------------------------------------------------------------------------------- /server/products/fixtures/data/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shorh/GB_Python_Django/HEAD/server/products/fixtures/data/data.json -------------------------------------------------------------------------------- /server/products/forms/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shorh/GB_Python_Django/HEAD/server/products/forms/__init__.py -------------------------------------------------------------------------------- /server/products/forms/categories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shorh/GB_Python_Django/HEAD/server/products/forms/categories.py -------------------------------------------------------------------------------- /server/products/forms/products.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shorh/GB_Python_Django/HEAD/server/products/forms/products.py -------------------------------------------------------------------------------- /server/products/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shorh/GB_Python_Django/HEAD/server/products/migrations/0001_initial.py -------------------------------------------------------------------------------- /server/products/migrations/0002_auto_20190320_2040.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shorh/GB_Python_Django/HEAD/server/products/migrations/0002_auto_20190320_2040.py -------------------------------------------------------------------------------- /server/products/migrations/0003_auto_20190320_2042.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shorh/GB_Python_Django/HEAD/server/products/migrations/0003_auto_20190320_2042.py -------------------------------------------------------------------------------- /server/products/migrations/0004_auto_20190324_1950.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shorh/GB_Python_Django/HEAD/server/products/migrations/0004_auto_20190324_1950.py -------------------------------------------------------------------------------- /server/products/migrations/0005_auto_20190325_1312.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shorh/GB_Python_Django/HEAD/server/products/migrations/0005_auto_20190325_1312.py -------------------------------------------------------------------------------- /server/products/migrations/0006_auto_20190407_0737.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shorh/GB_Python_Django/HEAD/server/products/migrations/0006_auto_20190407_0737.py -------------------------------------------------------------------------------- /server/products/migrations/0007_auto_20190407_1306.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shorh/GB_Python_Django/HEAD/server/products/migrations/0007_auto_20190407_1306.py -------------------------------------------------------------------------------- /server/products/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/products/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shorh/GB_Python_Django/HEAD/server/products/models.py -------------------------------------------------------------------------------- /server/products/serializers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shorh/GB_Python_Django/HEAD/server/products/serializers/__init__.py -------------------------------------------------------------------------------- /server/products/serializers/categories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shorh/GB_Python_Django/HEAD/server/products/serializers/categories.py -------------------------------------------------------------------------------- /server/products/serializers/products.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shorh/GB_Python_Django/HEAD/server/products/serializers/products.py -------------------------------------------------------------------------------- /server/products/static/products/css/picture.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shorh/GB_Python_Django/HEAD/server/products/static/products/css/picture.css -------------------------------------------------------------------------------- /server/products/static/products/css/product.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shorh/GB_Python_Django/HEAD/server/products/static/products/css/product.css -------------------------------------------------------------------------------- /server/products/static/products/img/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shorh/GB_Python_Django/HEAD/server/products/static/products/img/default.png -------------------------------------------------------------------------------- /server/products/static/products/img/karkasson.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shorh/GB_Python_Django/HEAD/server/products/static/products/img/karkasson.jpg -------------------------------------------------------------------------------- /server/products/static/products/img/machi-koro.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shorh/GB_Python_Django/HEAD/server/products/static/products/img/machi-koro.jpg -------------------------------------------------------------------------------- /server/products/static/products/img/manchkin.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shorh/GB_Python_Django/HEAD/server/products/static/products/img/manchkin.jpg -------------------------------------------------------------------------------- /server/products/static/products/img/tainiy_gorod.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shorh/GB_Python_Django/HEAD/server/products/static/products/img/tainiy_gorod.jpg -------------------------------------------------------------------------------- /server/products/templates/categories/create.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shorh/GB_Python_Django/HEAD/server/products/templates/categories/create.html -------------------------------------------------------------------------------- /server/products/templates/categories/delete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shorh/GB_Python_Django/HEAD/server/products/templates/categories/delete.html -------------------------------------------------------------------------------- /server/products/templates/categories/detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shorh/GB_Python_Django/HEAD/server/products/templates/categories/detail.html -------------------------------------------------------------------------------- /server/products/templates/categories/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shorh/GB_Python_Django/HEAD/server/products/templates/categories/index.html -------------------------------------------------------------------------------- /server/products/templates/categories/update.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shorh/GB_Python_Django/HEAD/server/products/templates/categories/update.html -------------------------------------------------------------------------------- /server/products/templates/products/components/picture.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shorh/GB_Python_Django/HEAD/server/products/templates/products/components/picture.html -------------------------------------------------------------------------------- /server/products/templates/products/create.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shorh/GB_Python_Django/HEAD/server/products/templates/products/create.html -------------------------------------------------------------------------------- /server/products/templates/products/delete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shorh/GB_Python_Django/HEAD/server/products/templates/products/delete.html -------------------------------------------------------------------------------- /server/products/templates/products/detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shorh/GB_Python_Django/HEAD/server/products/templates/products/detail.html -------------------------------------------------------------------------------- /server/products/templates/products/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shorh/GB_Python_Django/HEAD/server/products/templates/products/index.html -------------------------------------------------------------------------------- /server/products/templates/products/update.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shorh/GB_Python_Django/HEAD/server/products/templates/products/update.html -------------------------------------------------------------------------------- /server/products/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shorh/GB_Python_Django/HEAD/server/products/tests.py -------------------------------------------------------------------------------- /server/products/urls/__init__.py: -------------------------------------------------------------------------------- 1 | from .products import * 2 | -------------------------------------------------------------------------------- /server/products/urls/categories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shorh/GB_Python_Django/HEAD/server/products/urls/categories.py -------------------------------------------------------------------------------- /server/products/urls/products.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shorh/GB_Python_Django/HEAD/server/products/urls/products.py -------------------------------------------------------------------------------- /server/products/views/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shorh/GB_Python_Django/HEAD/server/products/views/__init__.py -------------------------------------------------------------------------------- /server/products/views/categories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shorh/GB_Python_Django/HEAD/server/products/views/categories.py -------------------------------------------------------------------------------- /server/products/views/products.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shorh/GB_Python_Django/HEAD/server/products/views/products.py -------------------------------------------------------------------------------- /server/products/viewsets/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shorh/GB_Python_Django/HEAD/server/products/viewsets/__init__.py -------------------------------------------------------------------------------- /server/products/viewsets/categories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shorh/GB_Python_Django/HEAD/server/products/viewsets/categories.py -------------------------------------------------------------------------------- /server/products/viewsets/products.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shorh/GB_Python_Django/HEAD/server/products/viewsets/products.py -------------------------------------------------------------------------------- /server/server/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/server/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shorh/GB_Python_Django/HEAD/server/server/settings.py -------------------------------------------------------------------------------- /server/server/static/server/css/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shorh/GB_Python_Django/HEAD/server/server/static/server/css/base.css -------------------------------------------------------------------------------- /server/server/static/server/css/crud.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shorh/GB_Python_Django/HEAD/server/server/static/server/css/crud.css -------------------------------------------------------------------------------- /server/server/static/server/css/menu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shorh/GB_Python_Django/HEAD/server/server/static/server/css/menu.css -------------------------------------------------------------------------------- /server/server/static/server/fonts/Raleway-Black-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shorh/GB_Python_Django/HEAD/server/server/static/server/fonts/Raleway-Black-Italic.ttf -------------------------------------------------------------------------------- /server/server/static/server/fonts/Raleway-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shorh/GB_Python_Django/HEAD/server/server/static/server/fonts/Raleway-ExtraBold.ttf -------------------------------------------------------------------------------- /server/server/static/server/fonts/Roboto-Black-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shorh/GB_Python_Django/HEAD/server/server/static/server/fonts/Roboto-Black-Italic.ttf -------------------------------------------------------------------------------- /server/server/static/server/fonts/Roboto-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shorh/GB_Python_Django/HEAD/server/server/static/server/fonts/Roboto-Black.ttf -------------------------------------------------------------------------------- /server/server/static/server/fonts/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shorh/GB_Python_Django/HEAD/server/server/static/server/fonts/Roboto-Regular.ttf -------------------------------------------------------------------------------- /server/server/static/server/img/games.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shorh/GB_Python_Django/HEAD/server/server/static/server/img/games.jpg -------------------------------------------------------------------------------- /server/server/static/server/img/hot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shorh/GB_Python_Django/HEAD/server/server/static/server/img/hot.png -------------------------------------------------------------------------------- /server/server/static/server/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shorh/GB_Python_Django/HEAD/server/server/static/server/img/logo.png -------------------------------------------------------------------------------- /server/server/static/server/img/new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shorh/GB_Python_Django/HEAD/server/server/static/server/img/new.png -------------------------------------------------------------------------------- /server/server/static/server/img/payment_methods/american-express.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shorh/GB_Python_Django/HEAD/server/server/static/server/img/payment_methods/american-express.jpg -------------------------------------------------------------------------------- /server/server/static/server/img/payment_methods/discover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shorh/GB_Python_Django/HEAD/server/server/static/server/img/payment_methods/discover.jpg -------------------------------------------------------------------------------- /server/server/static/server/img/payment_methods/maestro.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shorh/GB_Python_Django/HEAD/server/server/static/server/img/payment_methods/maestro.jpg -------------------------------------------------------------------------------- /server/server/static/server/img/payment_methods/master-card.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shorh/GB_Python_Django/HEAD/server/server/static/server/img/payment_methods/master-card.jpg -------------------------------------------------------------------------------- /server/server/static/server/img/payment_methods/paypal.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shorh/GB_Python_Django/HEAD/server/server/static/server/img/payment_methods/paypal.jpg -------------------------------------------------------------------------------- /server/server/static/server/img/payment_methods/visa.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shorh/GB_Python_Django/HEAD/server/server/static/server/img/payment_methods/visa.jpg -------------------------------------------------------------------------------- /server/server/static/server/img/shop.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shorh/GB_Python_Django/HEAD/server/server/static/server/img/shop.jpg -------------------------------------------------------------------------------- /server/server/templates/server/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shorh/GB_Python_Django/HEAD/server/server/templates/server/base.html -------------------------------------------------------------------------------- /server/server/templates/server/includes/inc_category.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shorh/GB_Python_Django/HEAD/server/server/templates/server/includes/inc_category.html -------------------------------------------------------------------------------- /server/server/templates/server/includes/inc_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shorh/GB_Python_Django/HEAD/server/server/templates/server/includes/inc_form.html -------------------------------------------------------------------------------- /server/server/templates/server/includes/inc_main_menu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shorh/GB_Python_Django/HEAD/server/server/templates/server/includes/inc_main_menu.html -------------------------------------------------------------------------------- /server/server/templates/server/includes/inc_pagination.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shorh/GB_Python_Django/HEAD/server/server/templates/server/includes/inc_pagination.html -------------------------------------------------------------------------------- /server/server/templates/server/includes/inc_product.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shorh/GB_Python_Django/HEAD/server/server/templates/server/includes/inc_product.html -------------------------------------------------------------------------------- /server/server/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shorh/GB_Python_Django/HEAD/server/server/urls.py -------------------------------------------------------------------------------- /server/server/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shorh/GB_Python_Django/HEAD/server/server/wsgi.py --------------------------------------------------------------------------------