gestiojeux/comments/admin.py

6 lines
145 B
Python
Raw Normal View History

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