2020-02-27 00:58:09 +00:00
|
|
|
{% extends "base.html" %}
|
|
|
|
{% block title %}Troggle paths report{% endblock %}
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
<h1>Expo Troggle paths report</h1>
|
|
|
|
<p>
|
|
|
|
<table style="font-family: Consolas, Lucida Console, monospace;">
|
2021-03-24 21:16:06 +00:00
|
|
|
<tr><th>Code</th><th>Path</th><th>Type</th></tr>
|
|
|
|
{% for c,p,t in bycodeslist %}
|
2020-02-27 00:58:09 +00:00
|
|
|
<tr>
|
|
|
|
<td>
|
|
|
|
{{c}}
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
{{p}}
|
|
|
|
</td>
|
2021-03-24 21:16:06 +00:00
|
|
|
<td>
|
|
|
|
{{t}}
|
|
|
|
</td>
|
2020-02-27 00:58:09 +00:00
|
|
|
</tr>
|
|
|
|
{% endfor %}
|
|
|
|
</table>
|
|
|
|
|
|
|
|
<p>
|
|
|
|
<table style="font-family: Consolas, Lucida Console, monospace;">
|
2021-03-25 16:15:58 +00:00
|
|
|
<tr><th>Code</th><th>Path</th><th>Type</th></tr>
|
2021-03-24 21:16:06 +00:00
|
|
|
{% for c,p,t in bypathslist %}
|
2020-02-27 00:58:09 +00:00
|
|
|
<tr>
|
|
|
|
<td>
|
|
|
|
{{p}}
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
{{c}}
|
|
|
|
</td>
|
2021-03-24 21:16:06 +00:00
|
|
|
<td>
|
|
|
|
{{t}}
|
|
|
|
</td>
|
2020-02-27 00:58:09 +00:00
|
|
|
</tr>
|
|
|
|
{% endfor %}
|
|
|
|
</table>
|
|
|
|
<p>
|
|
|
|
There are {{ ncodes }} different path codes defined.
|
2022-02-25 18:33:34 +00:00
|
|
|
<p>This report is generated from <code>templates/pathsreport.html</code> and
|
|
|
|
by <code>pathsreport(request)</code> in <code>core/views/statistics.py </code>
|
|
|
|
<hr>
|
|
|
|
<p>Go to <a href="/handbook/troggle/trogmanual.html">Troggle maintenance manuals</a>
|
2020-02-27 00:58:09 +00:00
|
|
|
{% endblock %}
|
|
|
|
|