Hello.
I wanted to display everything in the Thing database in a different webpage other than index.html.
I tried to add the following to the views.py to get it to display:
def clerks(request):
auctionitems = AuctionItem.objects.all()
return render(request,'clerks.html', {'auctionitems': auctionitems,})
note: Thing is equivalent to AuctionItem
However, I cannot get any data to display in a different webpage. It only shows in index.