diff options
author | Philip Sargent <philip.sargent@klebos.com> | 2021-03-24 21:16:06 +0000 |
---|---|---|
committer | Philip Sargent <philip.sargent@klebos.com> | 2021-03-24 21:16:06 +0000 |
commit | 65be64c756a193a2cd6d905ee4ed57dbb1763c76 (patch) | |
tree | 613d696e92778340c4abf22f633d47d80e5d7706 /templates/pathsreport.html | |
parent | 2fe2c0515fa5ed4b39d90108087f5685ac077cd2 (diff) | |
download | troggle-65be64c756a193a2cd6d905ee4ed57dbb1763c76.tar.gz troggle-65be64c756a193a2cd6d905ee4ed57dbb1763c76.tar.bz2 troggle-65be64c756a193a2cd6d905ee4ed57dbb1763c76.zip |
type data added to report
Diffstat (limited to 'templates/pathsreport.html')
-rw-r--r-- | templates/pathsreport.html | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/templates/pathsreport.html b/templates/pathsreport.html index 79effee..8ce93be 100644 --- a/templates/pathsreport.html +++ b/templates/pathsreport.html @@ -12,8 +12,8 @@ <p> <table style="font-family: Consolas, Lucida Console, monospace;"> -<tr><th>Code</th><th>Path</th></tr> -{% for c,p in bycodeslist %} +<tr><th>Code</th><th>Path</th><th>Type</th></tr> +{% for c,p,t in bycodeslist %} <tr> <td> {{c}} @@ -21,14 +21,17 @@ <td> {{p}} </td> +<td> + {{t}} +</td> </tr> {% endfor %} </table> <p> <table style="font-family: Consolas, Lucida Console, monospace;"> -<tr><th>Path</th><th>Code</th></tr> -{% for c,p in bypathslist %} +<tr><th>Path</th><th>Code</th><th>Type</th></tr> +{% for c,p,t in bypathslist %} <tr> <td> {{p}} @@ -36,6 +39,9 @@ <td> {{c}} </td> +<td> + {{t}} +</td> </tr> {% endfor %} </table> |