I've made a simple database for cooking recipes, whereby every Recipe object contains a number of Ingredient objects. In particular, within my Ingredient model, I have the line
recipe = models.ForeignKey(Recipe, edit_inline=models.TABULAR) This is great, because the generated Admin interface "does the right thing" automatically. When I use the Admin interface to create a new Recipe, I now gives me 3 tabular rows to add Ingredients. My question is: how can I make the Admin interface show more than 3 rows by default? Most Recipes have many more than 3 ingredients. :-) --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---

