9 lines
184 B
Python
9 lines
184 B
Python
from django.contrib import admin
|
|
|
|
from test_app.models import TestModel
|
|
|
|
|
|
@admin.register(TestModel)
|
|
class TestModelAdmin(admin.ModelAdmin):
|
|
list_display = ("name", "description")
|