-
Notifications
You must be signed in to change notification settings - Fork 215
Open
Description
from django.contrib import admin
from .models import Comment
@admin.register(Comment)
class CommentAdmin(admin.ModelAdmin):
list_display = ('traget','nickname','content','website','created_time')
按书上教程敲的代码。
到这里就报错了。。。
ERRORS:
<class 'comment.admin.CommentAdmin'>: (admin.E108) The value of 'list_display[0]' refers to 'traget', which is not a callable, an attribute of 'CommentAdmin', or an attribute or method on 'comment.Comment'.
Metadata
Metadata
Assignees
Labels
No labels