Skip to content

Instantly share code, notes, and snippets.

@maxwellcc
Last active September 6, 2022 12:41
Show Gist options
  • Save maxwellcc/9d6b628e142202a2cf8ebb75acc98352 to your computer and use it in GitHub Desktop.
Save maxwellcc/9d6b628e142202a2cf8ebb75acc98352 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