└── inventory ├── .gitignore ├── LICENSE.txt ├── README.txt ├── inventory ├── __init__.py ├── api_urls.py ├── settings.py ├── urls.py └── wsgi.py ├── manage.py └── products ├── __init__.py ├── admin.py ├── apps.py ├── migrations ├── 0001_initial.py ├── 0002_stat.py ├── 0003_category_status.py ├── 0004_product.py └── __init__.py ├── models.py ├── serializers.py ├── tests.py └── views.py /inventory/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | __pycache__/ 3 | *.pyc 4 | db.sqlite3 -------------------------------------------------------------------------------- /inventory/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harisibrahimkv/drf_workshop/HEAD/inventory/LICENSE.txt -------------------------------------------------------------------------------- /inventory/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harisibrahimkv/drf_workshop/HEAD/inventory/README.txt -------------------------------------------------------------------------------- /inventory/inventory/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /inventory/inventory/api_urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harisibrahimkv/drf_workshop/HEAD/inventory/inventory/api_urls.py -------------------------------------------------------------------------------- /inventory/inventory/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harisibrahimkv/drf_workshop/HEAD/inventory/inventory/settings.py -------------------------------------------------------------------------------- /inventory/inventory/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harisibrahimkv/drf_workshop/HEAD/inventory/inventory/urls.py -------------------------------------------------------------------------------- /inventory/inventory/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harisibrahimkv/drf_workshop/HEAD/inventory/inventory/wsgi.py -------------------------------------------------------------------------------- /inventory/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harisibrahimkv/drf_workshop/HEAD/inventory/manage.py -------------------------------------------------------------------------------- /inventory/products/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /inventory/products/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harisibrahimkv/drf_workshop/HEAD/inventory/products/admin.py -------------------------------------------------------------------------------- /inventory/products/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harisibrahimkv/drf_workshop/HEAD/inventory/products/apps.py -------------------------------------------------------------------------------- /inventory/products/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harisibrahimkv/drf_workshop/HEAD/inventory/products/migrations/0001_initial.py -------------------------------------------------------------------------------- /inventory/products/migrations/0002_stat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harisibrahimkv/drf_workshop/HEAD/inventory/products/migrations/0002_stat.py -------------------------------------------------------------------------------- /inventory/products/migrations/0003_category_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harisibrahimkv/drf_workshop/HEAD/inventory/products/migrations/0003_category_status.py -------------------------------------------------------------------------------- /inventory/products/migrations/0004_product.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harisibrahimkv/drf_workshop/HEAD/inventory/products/migrations/0004_product.py -------------------------------------------------------------------------------- /inventory/products/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /inventory/products/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harisibrahimkv/drf_workshop/HEAD/inventory/products/models.py -------------------------------------------------------------------------------- /inventory/products/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harisibrahimkv/drf_workshop/HEAD/inventory/products/serializers.py -------------------------------------------------------------------------------- /inventory/products/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harisibrahimkv/drf_workshop/HEAD/inventory/products/tests.py -------------------------------------------------------------------------------- /inventory/products/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harisibrahimkv/drf_workshop/HEAD/inventory/products/views.py --------------------------------------------------------------------------------