forked from DGNum/gestiojeux
5 lines
145 B
Python
5 lines
145 B
Python
from django.contrib import admin
|
|
|
|
|
|
class CommentAdmin(admin.ModelAdmin):
|
|
list_display = ("created_on", "author", "commented_object", "text")
|