8 lines
164 B
Python
8 lines
164 B
Python
from django.contrib import admin
|
|
|
|
from core.apps.tasks.models import Label
|
|
|
|
@admin.register(Label)
|
|
class LabelAdmin(admin.ModelAdmin):
|
|
list_display = ('name',)
|