mirror of
https://github.com/Damillora/Altessimo
synced 2024-11-21 21:47:33 +00:00
9 lines
216 B
Python
9 lines
216 B
Python
from django.contrib import admin
|
|
from . import models
|
|
# Register your models here.
|
|
|
|
class ArtistAdmin(admin.ModelAdmin):
|
|
search_fields = ['romanized_name','name']
|
|
|
|
admin.site.register(models.Artist, ArtistAdmin)
|