context_processors.py 208 B

12345678
  1. from games.models import GameSystem, GameCollection
  2. def game_systems(request):
  3. return {
  4. "game_systems": GameSystem.objects.all(),
  5. "game_collections": GameCollection.objects.all(),
  6. }