Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
UW-Glance
Manage
Activity
Members
Labels
Plan
Issues
28
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Eva Schiffer
UW-Glance
Commits
eacfeb06
Commit
eacfeb06
authored
6 years ago
by
Alan De Smet
Browse files
Options
Downloads
Patches
Plain Diff
Moving stats to tables
parent
1616ae4b
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!9
Improved report formatting#18
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
pyglance/glance/basereport.txt
+3
-0
3 additions, 0 deletions
pyglance/glance/basereport.txt
pyglance/glance/variablereport.txt
+7
-8
7 additions, 8 deletions
pyglance/glance/variablereport.txt
with
10 additions
and
8 deletions
pyglance/glance/basereport.txt
+
3
−
0
View file @
eacfeb06
...
@@ -15,6 +15,9 @@ Copyright (c) 2011 University of Wisconsin SSEC. All rights reserved.
...
@@ -15,6 +15,9 @@ Copyright (c) 2011 University of Wisconsin SSEC. All rights reserved.
<html>
<html>
<head>
<head>
<title>${self.title()}</title>
<title>${self.title()}</title>
<style>
td.n,th.n { text-align: right; }
</style>
</head>
</head>
<body>
<body>
...
...
This diff is collapsed.
Click to expand it.
pyglance/glance/variablereport.txt
+
7
−
8
View file @
eacfeb06
...
@@ -116,20 +116,19 @@ Copyright (c) 2011 University of Wisconsin SSEC. All rights reserved.
...
@@ -116,20 +116,19 @@ Copyright (c) 2011 University of Wisconsin SSEC. All rights reserved.
<h3>Statistical Summary</h3>
<h3>Statistical Summary</h3>
## list out all of the statistics groups we have
## list out all of the statistics groups we have
<dl>
% for setName in sorted(list(statGroups)) :
% for setName in sorted(list(statGroups)) :
<% dataSet = statGroups[setName] %>
<% dataSet = statGroups[setName] %>
<dt>
<h4>${setName}</h4>
${setName}
<table>
</dt>
<dd>
% for statName, statValue in sorted(list(dataSet.items())) :
% 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
% endfor
<br>
<br>
<
dd
>
<
/table
>
% endfor
% endfor
</dl>
</%block>
</%block>
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment