mirror of
https://github.com/jointakahe/takahe.git
synced 2024-11-14 19:31:06 +00:00
1130c23b1e
Removes the error table, adds a stats table and admin page. Fixes #166
15 lines
303 B
Python
15 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
|