Last active
September 6, 2022 12:41
-
-
Save maxwellcc/9d6b628e142202a2cf8ebb75acc98352 to your computer and use it in GitHub Desktop.
Para retirar o botão 'Novo' do Django Admin
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@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