kopia lustrzana https://github.com/jointakahe/takahe
9 wiersze
181 B
Python
9 wiersze
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"]
|