This is how my models look:
class QuestionTagM2M(models.Model):
tag = models.ForeignKey('Tag')
question = models.ForeignKey('Question')
date_added = models.DateTimeField(auto_now_add=True)
class Tag(models.Model):
description = models.CharField(max_length=100, unique=True)
class Question(models.Model):
tags = models.ManyToManyField(Tag, through=QuestionTagM2M, related_name='questions')
All I really wanted to do was add a timestamp when a given manytomany relationship was created. It makes sense, but it also adds a bit of complexity. Apart from removing the .add() functionality [despite the fact that the only field I’m really adding is auto-created so it technically shouldn’t interfere with this anymore]. But I can live with that, as I don’t mind doing the extra QuestionTagM2M.objects.create(question=,tag=) instead if it means gaining the additional timestamp functionality.
My issue is I really would love to be able to preserve my filter_horizontal javascript widget in the admin. I know the docs say I can use an inline instead, but this is just too unwieldy because there are no additional fields that would actually be in the inline apart from the foreign key to the Tag anyway.
Also, in the larger scheme of my database schema, my Question objects are already displayed as an inline on my admin page, and since Django doesn’t support nested inlines in the admin [yet], I have no way of selecting tags for a given question.
Is there any way to override formfield_for_manytomany(self, db_field, request=None, **kwargs) or something similar to allow for my usage of the nifty filter_horizontal widget and the auto creation of the date_added column to the database?
This seems like something that django should be able to do natively as long as you specify that all columns in the intermediate are automatically created (other than the foreign keys) perhaps with auto_created=True? or something of the like
There are ways to do this
QuestionTagM2M._meta.auto_created = Trueand deal w/ syncdb matters.Dynamically add
date_addedfield to the M2M model ofQuestionmodel in models.pyThen you could use it in admin as normal
ManyToManyField.In Python shell, use
Question.tags.throughto refer the M2M model.Note, If you don’t use
South, thensyncdbis enough; If you do,Southdoes not likethis way and will not freeze
date_addedfield, you need to manually write migration to add/remove the corresponding column.Customize ModelAdmin:
fieldsinside customized ModelAdmin, only definefilter_horizontal. This will bypass the field validation mentioned in Irfan’s answer.formfield_for_dbfield()orformfield_for_manytomany()to make Django admin to usewidgets.FilteredSelectMultiplefor thetagsfield.save_related()method inside your ModelAdmin class, like__set__()of theReverseManyRelatedObjectsDescriptorfield descriptor of ManyToManyField fordate_addedto save M2M instance w/o raise exception.