8 lines
183 B
Python
8 lines
183 B
Python
from django.contrib import admin
|
|
|
|
from core.apps.tasks.models import Comment
|
|
|
|
@admin.register(Comment)
|
|
class CommentAdmin(admin.ModelAdmin):
|
|
list_display = ('created_by', 'type')
|