from django.contrib import admin
from .models import Vote


@admin.register(Vote)
class VoteAdmin(admin.ModelAdmin):
    list_display = ('content_type', 'content_id', 'vote_count', 'created_at', 'updated_at')
    list_filter = ('content_type', 'created_at')
    search_fields = ('content_id',)
    readonly_fields = ('created_at', 'updated_at', 'voted_sessions')
    ordering = ('-vote_count',)
