mirror of
https://github.com/healthchecks/healthchecks.git
synced 2025-04-08 06:30:05 +00:00
8 lines
188 B
Python
8 lines
188 B
Python
from django.contrib import admin
|
|
|
|
from hc.checks.models import Canary
|
|
|
|
|
|
@admin.register(Canary)
|
|
class CanaryAdmin(admin.ModelAdmin):
|
|
list_display = ("id", "code", "user", "last_ping")
|