私は2つのモデルを持っています。
class Unit(models.Model):
title = models.CharField(max_length=60)
def __unicode__(self):
return self.title
class UniDoc(models.Model):
title = models.CharField(max_length=100, blank=True, null=True)
units = models.ManyToManyField(Unit, blank=True)
file = models.FileField(upload_to="uploads/")
author = models.ForeignKey(User, null=True, blank=True)
created_at = models.DateTimeField(auto_now_add=True)
def __unicode__(self):
return self.file.name
テンプレートのリンク ti ユニットで undoc リストを取得するにはどうすればよいですか?