context_processors.py 134 B

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