TypeError at /admin/
argument of type 'ValuesListQuerySet' is not iterable
Error during template rendering in virtualenv/local/lib/python2.7/site-packages/jet/templates/admin/base.html, error at line 176

the fix will be to change this in the jet_tags.py
pinned = list(PinnedApplication.objects.filter(user=context.get('user').pk).values_list('app_label', flat=True))
the main problem was that the i forgot to do the migration and was searching in other places because the error message was showing a different direction. so the above mentioned fix is not needed. After i did the migrations for jet, it worked very well !!!
I just installed django-jet, did the migrations, and this error shows up. -- note, from the pip installed version 1.0.5. I'll try dev to solve it.
pip install from github, migrated both dashboard and jet = working.
I have the same error. Would you please explain, what you did at the line pinned = ....
I solved it:
Most helpful comment
the main problem was that the i forgot to do the migration and was searching in other places because the error message was showing a different direction. so the above mentioned fix is not needed. After i did the migrations for jet, it worked very well !!!