diff options
author | cslocum <cslocum@d34015c8-bcbb-4646-8ac8-8ba5febf221d> | 2013-12-26 12:46:37 -0500 |
---|---|---|
committer | cslocum <cslocum@d34015c8-bcbb-4646-8ac8-8ba5febf221d> | 2013-12-26 12:46:37 -0500 |
commit | 6354b2cf48f0df787c69c8ae822da325abbd8de6 (patch) | |
tree | d298c4606f57be7b08a04f85c11e2c9fa889080f | |
parent | b8ac6f147b0bd993fe24801c84dd60d49e735251 (diff) | |
download | steuermann-6354b2cf48f0df787c69c8ae822da325abbd8de6.tar.gz |
add some colors to run links
git-svn-id: https://svn.stsci.edu/svn/ssb/etal/steuermann/trunk@1149 d34015c8-bcbb-4646-8ac8-8ba5febf221d
-rwxr-xr-x | go | 2 | ||||
-rw-r--r-- | scripts/steuermann_report.cgi | 7 |
2 files changed, 7 insertions, 2 deletions
@@ -1,6 +1,6 @@ #!/bin/sh -n=17 +n=18 rm -rf build diff --git a/scripts/steuermann_report.cgi b/scripts/steuermann_report.cgi index c05b030..9718e68 100644 --- a/scripts/steuermann_report.cgi +++ b/scripts/steuermann_report.cgi @@ -192,7 +192,12 @@ elif action == 'runs' : # optimization right now. print "<tr>" print "<td>" - print "<a href=%s?action=status&run=%s>%s</a>"%(cginame, run, run) + if run.startswith('daily_20'): + print "<a style="color:#B40404;" href=%s?action=status&run=%s>%s</a>"%(cginame, run, run) + elif run.startswith('etc_hst_daily') or run.startswith('etc_jwst_daily'): + print "<a style="color:#B40404;" href=%s?action=status&run=%s>%s</a>"%(cginame, run, run) + else: + print "<a href=%s?action=status&run=%s>%s</a>"%(cginame, run, run) print "</td>" print "<td>%s</td>"%errors print "<td>" |