mirror of
https://github.com/Dispatcharr/Dispatcharr.git
synced 2026-01-23 10:45:27 +00:00
41 lines
1 KiB
Python
41 lines
1 KiB
Python
# core/admin.py
|
|
|
|
from django.contrib import admin
|
|
from .models import UserAgent, StreamProfile, CoreSettings
|
|
|
|
@admin.register(UserAgent)
|
|
class UserAgentAdmin(admin.ModelAdmin):
|
|
list_display = (
|
|
"name",
|
|
"user_agent",
|
|
"description",
|
|
"is_active",
|
|
"created_at",
|
|
"updated_at",
|
|
)
|
|
search_fields = ("name", "user_agent", "description")
|
|
list_filter = ("is_active",)
|
|
readonly_fields = ("created_at", "updated_at")
|
|
|
|
@admin.register(StreamProfile)
|
|
class StreamProfileAdmin(admin.ModelAdmin):
|
|
list_display = (
|
|
"name",
|
|
"command",
|
|
"is_active",
|
|
"user_agent",
|
|
)
|
|
search_fields = ("name", "command", "user_agent")
|
|
list_filter = ("is_active",)
|
|
|
|
@admin.register(CoreSettings)
|
|
class CoreSettingsAdmin(admin.ModelAdmin):
|
|
"""
|
|
Because CoreSettings is typically a single 'singleton' row,
|
|
you can either allow multiple or restrict it. For now, we
|
|
just list and allow editing of any instance.
|
|
"""
|
|
list_display = (
|
|
"key",
|
|
"value",
|
|
)
|