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