diff --git a/pyglance/glance/basereport.txt b/pyglance/glance/basereport.txt index 7475d59112eb9627d4f93dd96dd1484cf6bc5d73..f552e0df8adf6d6178167e8310a34c0881cebe84 100644 --- a/pyglance/glance/basereport.txt +++ b/pyglance/glance/basereport.txt @@ -15,6 +15,9 @@ Copyright (c) 2011 University of Wisconsin SSEC. All rights reserved. <html> <head> <title>${self.title()}</title> + <style> + td.n,th.n { text-align: right; } + </style> </head> <body> diff --git a/pyglance/glance/variablereport.txt b/pyglance/glance/variablereport.txt index 31a2c0d51ecb3d325bc9e825566cb05f180eddef..64507fc998ff2fe501f828046468cbdcc595e9e6 100644 --- a/pyglance/glance/variablereport.txt +++ b/pyglance/glance/variablereport.txt @@ -116,20 +116,19 @@ Copyright (c) 2011 University of Wisconsin SSEC. All rights reserved. <h3>Statistical Summary</h3> ## list out all of the statistics groups we have - <dl> % for setName in sorted(list(statGroups)) : <% dataSet = statGroups[setName] %> - <dt> - ${setName} - </dt> - <dd> + <h4>${setName}</h4> + <table> % for statName, statValue in sorted(list(dataSet.items())) : - ${statName}<%block name="statDocLink"><a href="${runInfo[constants.DOCUMENTATION_PATH_KEY]}">*</a></%block>: ${report.make_formatted_display_string(statValue)} <br> + <tr> + <td class="n">${report.make_formatted_display_string(statValue)}</td> + <td>${statName}<%block name="statDocLink"><a href="${runInfo[constants.DOCUMENTATION_PATH_KEY]}">*</a></%block></td> + </tr> % endfor <br> - <dd> + </table> % endfor - </dl> </%block>