10 lines
255 B
Python
10 lines
255 B
Python
from django.contrib import admin
|
|
|
|
from .models import ModuleState
|
|
|
|
|
|
@admin.register(ModuleState)
|
|
class ModuleStateAdmin(admin.ModelAdmin):
|
|
list_display = ("key", "enabled", "updated_at")
|
|
list_filter = ("enabled",)
|
|
list_editable = ("enabled",)
|