├── .gitignore ├── core ├── __init__.py ├── admin.py ├── apps.py ├── forms.py ├── management │ └── commands │ │ ├── __init__.py │ │ └── create_data.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_rating.py │ ├── 0003_restaurant_restaurant_type.py │ ├── 0004_sale.py │ └── __init__.py ├── models.py ├── scripts │ ├── __init__.py │ └── orm_script.py ├── templates │ ├── base.html │ └── index.html ├── tests.py ├── urls.py └── views.py ├── manage.py └── orm_series ├── __init__.py ├── asgi.py ├── settings.py ├── urls.py └── wsgi.py /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | db.sqlite3 3 | notes.txt 4 | .env -------------------------------------------------------------------------------- /core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbytes-io/django-orm-series/HEAD/core/admin.py -------------------------------------------------------------------------------- /core/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbytes-io/django-orm-series/HEAD/core/apps.py -------------------------------------------------------------------------------- /core/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbytes-io/django-orm-series/HEAD/core/forms.py -------------------------------------------------------------------------------- /core/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/management/commands/create_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbytes-io/django-orm-series/HEAD/core/management/commands/create_data.py -------------------------------------------------------------------------------- /core/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbytes-io/django-orm-series/HEAD/core/migrations/0001_initial.py -------------------------------------------------------------------------------- /core/migrations/0002_rating.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbytes-io/django-orm-series/HEAD/core/migrations/0002_rating.py -------------------------------------------------------------------------------- /core/migrations/0003_restaurant_restaurant_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbytes-io/django-orm-series/HEAD/core/migrations/0003_restaurant_restaurant_type.py -------------------------------------------------------------------------------- /core/migrations/0004_sale.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbytes-io/django-orm-series/HEAD/core/migrations/0004_sale.py -------------------------------------------------------------------------------- /core/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbytes-io/django-orm-series/HEAD/core/models.py -------------------------------------------------------------------------------- /core/scripts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/scripts/orm_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbytes-io/django-orm-series/HEAD/core/scripts/orm_script.py -------------------------------------------------------------------------------- /core/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbytes-io/django-orm-series/HEAD/core/templates/base.html -------------------------------------------------------------------------------- /core/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbytes-io/django-orm-series/HEAD/core/templates/index.html -------------------------------------------------------------------------------- /core/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbytes-io/django-orm-series/HEAD/core/tests.py -------------------------------------------------------------------------------- /core/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbytes-io/django-orm-series/HEAD/core/urls.py -------------------------------------------------------------------------------- /core/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbytes-io/django-orm-series/HEAD/core/views.py -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbytes-io/django-orm-series/HEAD/manage.py -------------------------------------------------------------------------------- /orm_series/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /orm_series/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbytes-io/django-orm-series/HEAD/orm_series/asgi.py -------------------------------------------------------------------------------- /orm_series/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbytes-io/django-orm-series/HEAD/orm_series/settings.py -------------------------------------------------------------------------------- /orm_series/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbytes-io/django-orm-series/HEAD/orm_series/urls.py -------------------------------------------------------------------------------- /orm_series/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbytes-io/django-orm-series/HEAD/orm_series/wsgi.py --------------------------------------------------------------------------------