mirror of
https://github.com/pacnpal/thrillwiki_django_no_react.git
synced 2025-12-20 07:11:08 -05:00
11 lines
380 B
Python
11 lines
380 B
Python
from django.contrib import admin
|
|
from simple_history.admin import SimpleHistoryAdmin
|
|
from .models import Designer
|
|
|
|
@admin.register(Designer)
|
|
class DesignerAdmin(SimpleHistoryAdmin):
|
|
list_display = ('name', 'headquarters', 'founded_date', 'website')
|
|
search_fields = ('name', 'headquarters')
|
|
list_filter = ('founded_date',)
|
|
prepopulated_fields = {'slug': ('name',)}
|