From d45ec55fccfa5988d5b8f1f5115796b8f7c9152c Mon Sep 17 00:00:00 2001 From: Alex Dusenbery Date: Mon, 30 Oct 2023 16:34:09 -0400 Subject: [PATCH] feat: autocomplete customer agreement on license tf job --- license_manager/apps/subscriptions/admin.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/license_manager/apps/subscriptions/admin.py b/license_manager/apps/subscriptions/admin.py index 2d00e608..ec501d0b 100644 --- a/license_manager/apps/subscriptions/admin.py +++ b/license_manager/apps/subscriptions/admin.py @@ -678,6 +678,8 @@ class LicenseTransferJobAdmin(admin.ModelAdmin): 'is_dry_run', ) + autocomplete_fields = ['customer_agreement'] + search_fields = ( 'customer_agreement__enterprise_customer_uuid__startswith', 'customer_agreement__enterprise_customer_slug__startswith',