mirror of
https://github.com/Hopiu/django-cachalot.git
synced 2026-05-20 10:21:51 +00:00
7 lines
168 B
Python
7 lines
168 B
Python
|
|
from django.contrib import admin
|
||
|
|
from .models import TestModel
|
||
|
|
|
||
|
|
@admin.register(TestModel)
|
||
|
|
class TestModelAdmin(admin.ModelAdmin):
|
||
|
|
list_display = ('name', 'owner')
|