Use better way to find out if model record exists
This commit is contained in:
parent
9a0e505aae
commit
f9b53da19c
|
@ -30,11 +30,11 @@ from .models import Edition, Game, Platform, Purchase, Session
|
||||||
|
|
||||||
def model_counts(request):
|
def model_counts(request):
|
||||||
return {
|
return {
|
||||||
"game_available": Game.objects.count() != 0,
|
"game_available": Game.objects.exists(),
|
||||||
"edition_available": Edition.objects.count() != 0,
|
"edition_available": Edition.objects.exists(),
|
||||||
"platform_available": Platform.objects.count() != 0,
|
"platform_available": Platform.objects.exists(),
|
||||||
"purchase_available": Purchase.objects.count() != 0,
|
"purchase_available": Purchase.objects.exists(),
|
||||||
"session_count": Session.objects.count(),
|
"session_count": Session.objects.exists(),
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue