11 lines
292 B
Python
11 lines
292 B
Python
from django.contrib import admin
|
|
|
|
from .models import Team
|
|
|
|
|
|
@admin.register(Team)
|
|
class TeamAdmin(admin.ModelAdmin):
|
|
list_display = ("name", "short_name", "country", "is_national_team")
|
|
list_filter = ("is_national_team", "country")
|
|
search_fields = ("name", "short_name", "slug")
|