diff options
Diffstat (limited to 'templates')
-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> |