Disable adding through the admin

This commit is contained in:
Daniel Quinn 2017-03-05 12:15:18 +00:00
parent 8bc2dfe4c6
commit 351cd06ef7

View File

@ -62,6 +62,9 @@ class DocumentAdmin(CommonAdmin):
list_filter = ("tags", "correspondent", MonthListFilter)
ordering = ["-created", "correspondent"]
def has_add_permission(self, request):
return False
def created_(self, obj):
return obj.created.date().strftime("%Y-%m-%d")