1👍
✅
You only pass a reference to the model class, not a queryset, you can work with:
def store(request):
context = {'stuff': Merch.objects.all()}
return render(request, 'app1/store.html', context)
- [Answered ]-ModuleNotFoundError: No module named 'chat_app_backend.authentication' in Django project
Source:stackexchange.com