Querying Many to many fields in django template
问题 This may not be relevant but just wanted to ask, IF an object is passed from views to template and in the template will i be able to query many to many fields Models code: class Info(models.Model): xls_answer = models.TextField(null=True,blank=True) class Upload(models.Model): access = models.IntegerField() info = models.ManyToManyField(Info) time = models.CharField(max_length=8, null=True,blank=True) error_flag = models.IntegerField() def __unicode__(self): return self.access Views: // obj