This question already has an answer here:
Is there a way to remove the "Add" functionality on the Django admin site? For certain entities, I only want the Django admin to be able to view them or change existing ones, but not add new ones.
|
This question already has an answer here: Is there a way to remove the "Add" functionality on the Django admin site? For certain entities, I only want the Django admin to be able to view them or change existing ones, but not add new ones. |
|||
|
|
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
|
Sure, you can customize admin VERY granularly by following the instructions here -- I believe that what you want can be obtained in part by overriding |
|||||||||||||
|
|
See: Django Admin - Disable the 'Add' action for a specific model for true solution. |
|||
|
|
|
You can customize the permission for each user group from within the admin interface: try going to This won't be as granular as the solution offered by the earlier answer, but it will take care of most of your needs without needing to customize the admin. |
|||||||
|
|
If you change the permissions to restrict access then you'll still get the plus sign by a FK/MtM field. Clicking that will open a popup window with 'Permission Denied' in it. You can actually completely remove the plus sign by not simply not registering the model with the admin. I have a situation where I have predefined categories that I want users to be able to select more than one of. The best way to do this is with a models.ManyToMany field. You can register the model with the admin, enter the data as required and then remove the registration. |
|||
|
|
|
Satya's suggestion of setting max_num=0 works perfectly. Per the Django docs on the ModelForm class:
and
|
|||
|
|