mirror of
https://github.com/jointakahe/takahe.git
synced 2024-11-22 15:21:01 +00:00
8 lines
181 B
Python
8 lines
181 B
Python
from django.contrib import admin
|
|
|
|
from core.models import Config
|
|
|
|
|
|
@admin.register(Config)
|
|
class ConfigAdmin(admin.ModelAdmin):
|
|
list_display = ["id", "key", "user", "identity"]
|