This repository has been archived on 2023-09-24. You can view files and clone it, but cannot push or open issues or pull requests.
takahe/stator/admin.py
Andrew Godwin 1130c23b1e Stator stats overhaul
Removes the error table, adds a stats table and admin page.
Fixes #166
2022-12-15 12:26:44 -07:00

16 lines
303 B
Python

from django.contrib import admin
from stator.models import Stats
@admin.register(Stats)
class DomainAdmin(admin.ModelAdmin):
list_display = [
"model_label",
"updated",
]
ordering = ["model_label"]
def has_add_permission(self, request, obj=None):
return False