summaryrefslogtreecommitdiffstats
path: root/templates/pathsreport.html
blob: 300b284531af14fba2415749312c028d0c5dfaf0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{% 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;">
<tr><th>Code</th><th>Path</th><th>Type</th></tr>
{% for c,p,t in bycodeslist %}
<tr>
<td>
  {{c}}
</td>
<td>
  {{p}}
</td>
<td>
  {{t}}
</td>
</tr>
{% endfor %}
</table>

<p>
<table style="font-family: Consolas, Lucida Console, monospace;">
<tr><th>Code</th><th>Path</th><th>Type</th></tr>
{% for c,p,t  in bypathslist %}
<tr>
<td>
  {{p}}
</td>
<td>
  {{c}}
</td>
<td>
  {{t}}
</td>
</tr>
{% endfor %}
</table>
<p>
There are  {{ ncodes }} different path codes defined.
<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>
{% endblock %}