Directory structure:
└── divanov11-easily-convert-django-function-based-views-to-class-based-views/
├── README.md
├── db.sqlite3
├── manage.py
├── requirements.txt
├── base/
│ ├── __init__.py
│ ├── admin.py
│ ├── apps.py
│ ├── models.py
│ ├── tests.py
│ ├── urls.py
│ ├── views.py
│ ├── migrations/
│ │ ├── 0001_initial.py
│ │ ├── 0002_task_updated.py
│ │ └── __init__.py
│ └── templates/
│ └── base/
│ ├── delete.html
│ ├── index.html
│ └── task.html
└── fbv_to_cbv/
├── __init__.py
├── asgi.py
├── settings.py
├── urls.py
└── wsgi.py