mirror of
https://github.com/FlipsideCrypto/badger.git
synced 2026-02-06 10:57:46 +00:00
9 lines
314 B
Python
9 lines
314 B
Python
from django.contrib import admin
|
|
|
|
from .models import Badge
|
|
|
|
@admin.register(Badge)
|
|
class BadgeAdmin(admin.ModelAdmin):
|
|
list_display = ('name', 'description', 'created', 'updated')
|
|
list_filter = ('name', 'description', 'created', 'updated')
|
|
search_fields = ('name', 'description', 'created', 'updated') |