You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
377 B
15 lines
377 B
from django.contrib import admin
|
|
|
|
# Register your models here.
|
|
from .models import Comment
|
|
|
|
|
|
class CommentAdmin(admin.ModelAdmin):
|
|
list_display = ('id', 'body', 'author', 'article', 'last_mod_time')
|
|
list_display_links = ('id', 'body')
|
|
list_filter = ('author', 'article',)
|
|
exclude = ('created_time', 'last_mod_time')
|
|
|
|
|
|
admin.site.register(Comment, CommentAdmin)
|