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.
|
|
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 |
||||||||||
|
|
|
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. |
||||
|
