15 lines
430 B
Python
15 lines
430 B
Python
from django.contrib import admin
|
|
|
|
from .models import Migration
|
|
# Register your models here.
|
|
|
|
|
|
class MigrationAdmin(admin.ModelAdmin):
|
|
list_display = ('migration_status', 'booked_time',
|
|
'ticket_id', 'domain', 'brand', 'print_missed_migrations')
|
|
search_fields = ['domain', 'booked_time',
|
|
'username', 'ticket_id', 'migration_status']
|
|
|
|
|
|
admin.site.register(Migration, MigrationAdmin)
|