Skip to content

Instantly share code, notes, and snippets.

@maxwellamaral
Forked from maxwellcc/admin.py
Created September 6, 2022 12:41
Show Gist options
  • Save maxwellamaral/677c6920ecd7f3679da39b7b0d9aaad1 to your computer and use it in GitHub Desktop.
Save maxwellamaral/677c6920ecd7f3679da39b7b0d9aaad1 to your computer and use it in GitHub Desktop.
Para retirar o botão 'Novo' do Django Admin
@admin.register(NotificationType)
class NotificationTypeAdmin(admin.ModelAdmin):
model = NotificationType
(...)
def has_add_permission(self, request, obj=None):
return False
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment