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