mirror of
https://github.com/jlengrand/bugsink.git
synced 2026-03-10 08:01:17 +00:00
10 lines
259 B
Python
10 lines
259 B
Python
from django.contrib import admin
|
|
|
|
from .models import OutboundMessage
|
|
|
|
|
|
@admin.register(OutboundMessage)
|
|
class OutboundMessageAdmin(admin.ModelAdmin):
|
|
list_display = ("attempted_at", "sent_at")
|
|
readonly_fields = ("attempted_at", "sent_at", "message")
|