mirror of
https://github.com/lemeow125/DRF_Template.git
synced 2024-11-17 04:09:25 +08:00
11 lines
285 B
Python
11 lines
285 B
Python
|
from unfold.admin import ModelAdmin
|
||
|
from django.contrib import admin
|
||
|
from .models import SearchResult
|
||
|
|
||
|
|
||
|
@admin.register(SearchResult)
|
||
|
class SearchResultAdmin(ModelAdmin):
|
||
|
model = SearchResult
|
||
|
search_fields = ('id', 'title', 'link')
|
||
|
list_display = ['id', 'title']
|