gestiojeux/comments/admin.py
2020-12-27 18:01:37 +01:00

5 lines
145 B
Python

from django.contrib import admin
class CommentAdmin(admin.ModelAdmin):
list_display = ("created_on", "author", "commented_object", "text")