mirror of
https://gitlab.com/megazordpobeda/DataRush.git
synced 2026-05-22 23:17:09 +00:00
14 lines
244 B
Python
14 lines
244 B
Python
from django.contrib import admin
|
|
|
|
from apps.team.models import Team
|
|
|
|
|
|
@admin.register(Team)
|
|
class TeamAdmin(admin.ModelAdmin):
|
|
list_display = ("name", "owner")
|
|
search_fields = (
|
|
"name",
|
|
"owner",
|
|
"members",
|
|
)
|