forked from expo/troggle
type data added to report
This commit is contained in:
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user