mirror of
https://github.com/jointakahe/takahe.git
synced 2024-11-22 23:30:59 +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"]
|