In Django's ForeignKey field I can specify the to_field. This is great, as I can use slugs as foreign keys and do the equivalent of the 'natural key' functionality.
I can't find any such field in ManyToMany. I don't see why not. Is there some way to do this? Perhaps do it explicitly in my own m2m join table with through?