1
Since the m2m relation is defined in Game
with heat = models.ManyToMany(...)
, you just need to use:
self.heat.all()
Source:stackexchange.com
1
Since the m2m relation is defined in Game
with heat = models.ManyToMany(...)
, you just need to use:
self.heat.all()