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