Fixed ItemListingCount in home view

doc_update
Joey Hines 2019-01-14 19:21:15 -06:00
parent 690d076d16
commit 915c4a9157
1 changed files with 1 additions and 1 deletions

View File

@ -13,7 +13,7 @@ class Home(View):
stats.append(("Players", Player.objects.count()))
stats.append(("Bases", Base.objects.count()))
stats.append(("Shops", Shop.objects.count()))
stats.append(("Items for Sale", Player.objects.count()))
stats.append(("Items for Sale", ItemListing.objects.count()))
context = {
"stat_list": stats,