├── .gitignore ├── LICENSE ├── README.md └── src ├── cfehome ├── __init__.py ├── asgi.py ├── settings.py ├── urls.py └── wsgi.py ├── manage.py ├── products ├── __init__.py ├── admin.py ├── apps.py ├── forms.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_digitalproduct.py │ ├── 0003_product_user.py │ ├── 0004_auto_20210328_2029.py │ └── __init__.py ├── mixins.py ├── models.py ├── templates │ └── products │ │ ├── product_detail.html │ │ └── product_list.html ├── tests.py └── views.py └── templates ├── about.html ├── forms-delete.html ├── forms.html └── team.html /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/django-class-based-views-unleashed-2021/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/django-class-based-views-unleashed-2021/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/django-class-based-views-unleashed-2021/HEAD/README.md -------------------------------------------------------------------------------- /src/cfehome/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/cfehome/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/django-class-based-views-unleashed-2021/HEAD/src/cfehome/asgi.py -------------------------------------------------------------------------------- /src/cfehome/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/django-class-based-views-unleashed-2021/HEAD/src/cfehome/settings.py -------------------------------------------------------------------------------- /src/cfehome/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/django-class-based-views-unleashed-2021/HEAD/src/cfehome/urls.py -------------------------------------------------------------------------------- /src/cfehome/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/django-class-based-views-unleashed-2021/HEAD/src/cfehome/wsgi.py -------------------------------------------------------------------------------- /src/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/django-class-based-views-unleashed-2021/HEAD/src/manage.py -------------------------------------------------------------------------------- /src/products/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/products/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/django-class-based-views-unleashed-2021/HEAD/src/products/admin.py -------------------------------------------------------------------------------- /src/products/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/django-class-based-views-unleashed-2021/HEAD/src/products/apps.py -------------------------------------------------------------------------------- /src/products/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/django-class-based-views-unleashed-2021/HEAD/src/products/forms.py -------------------------------------------------------------------------------- /src/products/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/django-class-based-views-unleashed-2021/HEAD/src/products/migrations/0001_initial.py -------------------------------------------------------------------------------- /src/products/migrations/0002_digitalproduct.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/django-class-based-views-unleashed-2021/HEAD/src/products/migrations/0002_digitalproduct.py -------------------------------------------------------------------------------- /src/products/migrations/0003_product_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/django-class-based-views-unleashed-2021/HEAD/src/products/migrations/0003_product_user.py -------------------------------------------------------------------------------- /src/products/migrations/0004_auto_20210328_2029.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/django-class-based-views-unleashed-2021/HEAD/src/products/migrations/0004_auto_20210328_2029.py -------------------------------------------------------------------------------- /src/products/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/products/mixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/django-class-based-views-unleashed-2021/HEAD/src/products/mixins.py -------------------------------------------------------------------------------- /src/products/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/django-class-based-views-unleashed-2021/HEAD/src/products/models.py -------------------------------------------------------------------------------- /src/products/templates/products/product_detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/django-class-based-views-unleashed-2021/HEAD/src/products/templates/products/product_detail.html -------------------------------------------------------------------------------- /src/products/templates/products/product_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/django-class-based-views-unleashed-2021/HEAD/src/products/templates/products/product_list.html -------------------------------------------------------------------------------- /src/products/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/django-class-based-views-unleashed-2021/HEAD/src/products/tests.py -------------------------------------------------------------------------------- /src/products/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/django-class-based-views-unleashed-2021/HEAD/src/products/views.py -------------------------------------------------------------------------------- /src/templates/about.html: -------------------------------------------------------------------------------- 1 |

Hello world

-------------------------------------------------------------------------------- /src/templates/forms-delete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/django-class-based-views-unleashed-2021/HEAD/src/templates/forms-delete.html -------------------------------------------------------------------------------- /src/templates/forms.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/django-class-based-views-unleashed-2021/HEAD/src/templates/forms.html -------------------------------------------------------------------------------- /src/templates/team.html: -------------------------------------------------------------------------------- 1 |

Team

--------------------------------------------------------------------------------