If you just want to hide it for a cosmetic purpose, I would use a Javascript script that hides this โ+โ sign.
You can add your own Javascript sources to the ModelManager of the application using the internal Media class, as described in docs . Something like that:
class MyModelAdmin(admin.ModelAdmin): class Media: js = ("js/hide_myfield_addlink.js",)
The Javascript source will look something like this:
django.jQuery(document).ready(function() { django.jQuery("#add_id_myfield").hide(); });
On the other hand, if these admin users can never add such a model, do not give them permission to add them. Then these add links will never be displayed.
source share