mirror of
https://github.com/ajurna/cbwebreader.git
synced 2025-12-06 14:17:19 +00:00
7 lines
195 B
Python
7 lines
195 B
Python
from django.contrib import admin
|
|
from comic.models import Setting
|
|
|
|
# Register your models here.
|
|
@admin.register(Setting)
|
|
class SettingAdmin(admin.ModelAdmin):
|
|
list_display = ('name', 'value') |