diff options
author | cslocum <cslocum@d34015c8-bcbb-4646-8ac8-8ba5febf221d> | 2012-10-03 11:47:46 -0400 |
---|---|---|
committer | cslocum <cslocum@d34015c8-bcbb-4646-8ac8-8ba5febf221d> | 2012-10-03 11:47:46 -0400 |
commit | facc392133a8fbe9dc71c8248843f28d1db8d260 (patch) | |
tree | 4ebf4f0e20890e55f1c0467d47a64509bfcdcbb3 /steuermann/report.py | |
parent | 6d20f77533a421205c9802ad4cfaecd7947e3453 (diff) | |
download | steuermann-facc392133a8fbe9dc71c8248843f28d1db8d260.tar.gz |
link to run logs from SM report
git-svn-id: https://svn.stsci.edu/svn/ssb/etal/steuermann/trunk@806 d34015c8-bcbb-4646-8ac8-8ba5febf221d
Diffstat (limited to 'steuermann/report.py')
-rw-r--r-- | steuermann/report.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/steuermann/report.py b/steuermann/report.py index 17ccd6d..a39c4c9 100644 --- a/steuermann/report.py +++ b/steuermann/report.py @@ -54,7 +54,7 @@ def info_callback_gui( db, run, tablename, host, cmd ) : if status in simple_status : link = '%s'%d_status else : - link = " <a href='%s?action=log&name=%s/%s:%s/%s'>%s</a>"%(cginame, run, host, tablename, cmd, d_status ) + link = "<a href='%s?action=log&name=%s/%s:%s/%s'>%s</a>" %(cginame, run, host, tablename, cmd, d_status ) if not status in simple_status : try : @@ -73,7 +73,7 @@ def info_callback_gui( db, run, tablename, host, cmd ) : # h_result = '%s %s %s %s'%(link, d_status, start_time, end_time) if logs_exist: - link += '<BR/>LINK' + link += "<br/><a href='%s?action=run_log&name=%s/%s:%s/%s'>%s</a>" %(cginame, run, host, tablename, cmd, 'logs' ) h_result = link |