Many to Many Intermediary Tables in Admin
The [source:django/trunk/tests/modeltests/m2m_intermediary/models.py Many-to-Many Intermediary] test case already shows how this is structured. What I add here is a set of parameters for the fields in the intermediary model that allow smooth inline editing in admin.
from django.db import models
class Individual (models.Model):
class Admin: pass
class Event (models.Model):
class Admin: pass
class Participation (models.Model):
event = models.ForeignKey(Event, related_name='participants', edit_inline=True, blank=True, default=None)
individual = models.ForeignKey(Individual, related_name='events', edit_inline=True, blank=True, default=None)
role = models.PositiveSmallIntegerField(core=True, blank=True, default=None)
class Admin: pass
edit_inline=Truecore=False# So that when anIndividualis being created along with a fewParticipationscreated inline, theParticipationrecords will be valid even though theIndividualdoesn't fully exist yet.blank=True, default=None# So that untouched inline records will have blank core values and thus will not be created.
Last modified
19 years ago
Last modified on Oct 3, 2006, 8:25:54 AM
Note:
See TracWiki
for help on using the wiki.