> class Author(models.Model): > name = models.CharField(max_length=100) > title = models.CharField(max_length=3, choices=TITLE_CHOICES) > birth_date = models.DateField(blank=True, null=True) > > def __unicode__(self): > return self.name > > class Book(models.Model): > name = models.CharField(max_length=100) > authors = models.ManyToManyField(Author) > > What i want is that, if i need to display the book detail it should give me > who is the other for a particular book.
According to your model, a book can have more than one author, accessed via the "authors": {% for book in books %} <u>{{ book.name }}</u> <ul>{% for author in book.authors %} <li>{{ author }}</li> {% endfor %} </ul> {% endfor %} or in Python code: book = Book.objects.get(id=42) for author in book.authors: print author You can also slice the authors to just get the first one: arbitrary_author = book.authors[0] -tim --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to django-users+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---