From e536811640a511ef727a37c1dd86d08fafb4a10e Mon Sep 17 00:00:00 2001 From: asadiqbal Date: Thu, 4 Jan 2018 17:31:56 +0500 Subject: [PATCH] remove backend_name --- common/djangoapps/third_party_auth/admin.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/djangoapps/third_party_auth/admin.py b/common/djangoapps/third_party_auth/admin.py index 7e6a9a58f0..f2c4066266 100644 --- a/common/djangoapps/third_party_auth/admin.py +++ b/common/djangoapps/third_party_auth/admin.py @@ -54,7 +54,7 @@ class SAMLProviderConfigAdmin(KeyedConfigurationModelAdmin): def get_list_display(self, request): """ Don't show every single field in the admin change list """ return ( - 'name_with_update_link', 'enabled', 'site', 'backend_name', 'entity_id', 'metadata_source', + 'name_with_update_link', 'enabled', 'site', 'entity_id', 'metadata_source', 'has_data', 'mode', 'change_date', 'changed_by', )