I\'m at wit\'s end. After a dozen hours of troubleshooting, probably more, I thought I was finally in business, but then I got:
Model class django.contrib.co
The issue is that:
You have made modifications to your models file, but not addedd them yet to the DB, but you are trying to run Python manage.py runserver.
Run Python manage.py makemigrations
Python manage.py migrate
Now Python manage.py runserver and all should be fine.