type data added to report

This commit is contained in:
Philip Sargent
2021-03-24 21:16:06 +00:00
parent 2fe2c0515f
commit 65be64c756
2 changed files with 54 additions and 12 deletions

View File

@@ -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>