mirror of
https://github.com/jlengrand/bugsink.git
synced 2026-03-10 08:01:17 +00:00
11 lines
326 B
Python
11 lines
326 B
Python
from django.contrib import admin
|
|
|
|
from .models import MessagingServiceConfig
|
|
|
|
|
|
@admin.register(MessagingServiceConfig)
|
|
class MessagingServiceConfigAdmin(admin.ModelAdmin):
|
|
list_display = ('project', 'display_name', 'kind', 'last_failure_timestamp')
|
|
search_fields = ('name', 'service_type')
|
|
list_filter = ('kind',)
|