If I get you right you need to add m2m objects with a default value. In this situation, you can create an intermediate model to build m2m. For example: JobActionRel: job = fk action = fk-to-actions (default=Action.objects.get...)
And use it as through model: https://docs.djangoproject.com/en/2.1/topics/db/models/#extra-fields-on-many-to-many-relationships Now, in admin you see the default action. Remember, before making it through, create JobActionRels from previous m2m objects. -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/django-users. To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/445a903a-408b-445e-a8cb-4e09db5162d2%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.

