[Django]-Type object is not iterable Django

12👍

You have not inherited from models.Model in your Skill model.

Change your models.py as follows

class Skill(models.Model):
   title = models.CharField(max_length=250)

I think this answer helped you. 🙂

Leave a comment