Files
backend-v1/core/apps/tasks/admin/comment.py
xoliqberdiyev b39c080de3 add tasks app
2026-04-29 18:40:51 +05:00

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')