7 lines
186 B
Python
Executable file
7 lines
186 B
Python
Executable file
from django.contrib import admin
|
|
from .models import Plant
|
|
|
|
@admin.register(Plant)
|
|
class PlantAdmin(admin.ModelAdmin):
|
|
list_display = ('name', 'image')
|
|
search_fields = ('name',)
|