У меня есть три модели:
class Season(models.Model):
name = models.CharField(max_length=512)
class Clothes(models.Model):
season = models.ForeignKey(Season, related_name='season_clothes', on_delete=models.CASCADE)
name = models.CharField(max_length=512)
class User(models.Model):
name = models.CharField()
clothes = models.ManyToManyField(Clothes)
Как я могу получить всю одежду пользователя с указанием сезона в шаблоне, если я знаю, для какого пользователя этот запрос.
Примерно так:
Winter - (It's a Season name)
Сoat - (name of clothes)
Scarf - (name of clothes)
Boots - (name of clothes)
Summer - (It's a Season name)
Shorts - (name of clothes)
Swimming trunks - (name of clothes)
Sneakers - (name of clothes)