mirror of
https://github.com/jointakahe/takahe.git
synced 2024-11-20 14:21:00 +00:00
17 lines
327 B
Python
17 lines
327 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",
|
|
"from_state",
|
|
"to_state",
|
|
"error",
|
|
]
|
|
ordering = ["-date"]
|