37051-vm/core/admin.py
Flatlogic Bot bfe98de2d1 faded
2025-12-18 23:08:12 +00:00

8 lines
264 B
Python

from django.contrib import admin
from .models import Post
@admin.register(Post)
class PostAdmin(admin.ModelAdmin):
list_display = ('author', 'created_at', 'intent')
list_filter = ('created_at', 'intent')
search_fields = ('content', 'author__username')