mirror of
https://github.com/FlipsideCrypto/badger.git
synced 2026-02-06 10:57:46 +00:00
9 lines
307 B
Python
9 lines
307 B
Python
from django.contrib import admin
|
|
|
|
from .models import Feedback
|
|
|
|
@admin.register(Feedback)
|
|
class FeedbackAdmin(admin.ModelAdmin):
|
|
list_display = ('feedback_url', 'liked', 'comment', 'created_at', 'updated_at')
|
|
list_filter = ('created_at', 'updated_at')
|
|
search_fields = ('feedback_url', 'comment') |