[Django]-Django module object is not iterable

5đź‘Ť

âś…

Instead of writing “from .models import Post” you should write “from .models.Post import Post”.

First “Post” is a modulename (file name), second one is a class name.

👤MihanEntalpo

Leave a comment