[trends] Initial trends app
Some checks failed
build / test (push) Has been cancelled

This commit is contained in:
2026-06-16 11:12:13 -04:00
parent ac82292200
commit 57f273b0cc
26 changed files with 978 additions and 8 deletions

View File

@ -0,0 +1,10 @@
from django.contrib import admin
from trends.models import TrendResult
@admin.register(TrendResult)
class TrendResultAdmin(admin.ModelAdmin):
list_display = ("user", "trend_slug", "computed_at", "created")
list_filter = ("user", "trend_slug")
ordering = ("-computed_at",)