I couldn't open the screenshot . But to work with the django forms you need to perform below tasks.
1) create model of your choice in models.py.
2). Python manage.py makemigrations
3) python manage py migrate.
4 create a python file called forms.py inside your app.
5) import your models there ( from .models import model_name
6) create class to extend forms module.
7) in views.py you either need to define class based views or function based views.
On Mon, 27 Apr 2020 at 20:59, DimGo
Why is this this strange error?