mirror of
https://gitlab.com/megazordpobeda/DataRush.git
synced 2026-05-22 23:17:09 +00:00
10 lines
214 B
Python
10 lines
214 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",)
|