21 lines
419 B
Python
21 lines
419 B
Python
from django.contrib import admin
|
|
|
|
from stator.models import StatorError
|
|
|
|
|
|
@admin.register(StatorError)
|
|
class DomainAdmin(admin.ModelAdmin):
|
|
list_display = [
|
|
"id",
|
|
"date",
|
|
"model_label",
|
|
"instance_pk",
|
|
"state",
|
|
"error",
|
|
]
|
|
list_filter = ["model_label", "date"]
|
|
ordering = ["-date"]
|
|
|
|
def has_add_permission(self, request, obj=None):
|
|
return False
|