diff --git a/views.py b/views.py index cb0a1cb..29399dc 100644 --- a/views.py +++ b/views.py @@ -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,