Fix styling of AFE admin interface.

The change_list.html for tests used to be handled as a customized
template. The template failed to extend the original change_list.html,
so it didn't keep up to date. Additionally, the "white-space:pre" style
was applied to all <td> elements instead of just the description.

This restricts that style change to the description only, and also
maintains most of the default Django admin interface.

Signed-off-by: James Ren <jamesren@google.com>


git-svn-id: http://test.kernel.org/svn/autotest/trunk@4247 592f7852-d20e-0410-864c-8624ca9c26a4
diff --git a/frontend/afe/admin.py b/frontend/afe/admin.py
index 545ff04..df5d9a7 100644
--- a/frontend/afe/admin.py
+++ b/frontend/afe/admin.py
@@ -101,7 +101,7 @@
               'test_time', 'sync_count', 'test_type', 'path',
               'dependencies', 'experimental', 'run_verify',
               'description')
-    list_display = ('name', 'test_type', 'description', 'sync_count')
+    list_display = ('name', 'test_type', 'admin_description', 'sync_count')
     search_fields = ('name',)
     filter_horizontal = ('dependency_labels',)