insert second level of drilldown

Signed-off-by: Martin J. Bligh <mbligh@google.com>



git-svn-id: http://test.kernel.org/svn/autotest/trunk@665 592f7852-d20e-0410-864c-8624ca9c26a4
diff --git a/tko/frontend.py b/tko/frontend.py
index c04ff93..2fa5b68 100755
--- a/tko/frontend.py
+++ b/tko/frontend.py
@@ -8,6 +8,15 @@
 #
 # Note that job does put pull test - test is the primary object.
 
+status_colour = {
+	'GOOD'          : '#66ff66', # green
+	'WARN'          : '#fffc00', # yellow
+	'FAIL'          : '#fff666', # red
+	'ABORT'         : '#ff6666', # red
+	'ERROR'         : '#ff6666', # red
+	'NOSTATUS'      : '#ffffff', # white
+}
+
 class kernel:
 	@classmethod
 	def select(klass, db, where = {}):