I\'m having problems achieving a (probably) rather simple task. I have fully modifiable models (Prodotto, Comune) which are shown as \"addable\" fields, as shown in picture
To remove the "Add another" option, please add the below method in admin inline class.
def has_add_permission(self, request):
    return False
Similarly if you want to disable "Delete?" option, add the following method in admin inline class.
def has_delete_permission(self, request, obj=None):
    return False