mirror of
https://gitlab.com/megazordpobeda/DataRush.git
synced 2026-05-23 21:27:10 +00:00
16 lines
279 B
Python
16 lines
279 B
Python
from django.contrib import admin
|
|
|
|
from apps.achievement.models import Achievement
|
|
|
|
|
|
@admin.register(Achievement)
|
|
class AchievementAdmin(admin.ModelAdmin):
|
|
list_display = (
|
|
"id",
|
|
"name",
|
|
)
|
|
search_fields = (
|
|
"name",
|
|
"description",
|
|
)
|