summaryrefslogtreecommitdiffstats
path: root/templates/pathsreport.html
diff options
context:
space:
mode:
authorPhilip Sargent <philip.sargent@gmail.com>2020-02-27 00:58:09 +0000
committerPhilip Sargent <philip.sargent@gmail.com>2020-02-27 00:58:09 +0000
commitcdef395f89e81c2231538d76f1204cbe322fa289 (patch)
treec5d46a8d8d6b27038beda69f052c93ff998f3417 /templates/pathsreport.html
parent66f6a9ce90c4dc6badb58a0745e07b995f4150db (diff)
downloadtroggle-cdef395f89e81c2231538d76f1204cbe322fa289.tar.gz
troggle-cdef395f89e81c2231538d76f1204cbe322fa289.tar.bz2
troggle-cdef395f89e81c2231538d76f1204cbe322fa289.zip
New troggle report on defined directory paths
Diffstat (limited to 'templates/pathsreport.html')
-rw-r--r--templates/pathsreport.html45
1 files changed, 45 insertions, 0 deletions
diff --git a/templates/pathsreport.html b/templates/pathsreport.html
new file mode 100644
index 0000000..79effee
--- /dev/null
+++ b/templates/pathsreport.html
@@ -0,0 +1,45 @@
+{% extends "base.html" %}
+{% load wiki_markup %}
+{% load link %}
+
+{% 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></tr>
+{% for c,p in bycodeslist %}
+<tr>
+<td>
+ {{c}}
+</td>
+<td>
+ {{p}}
+</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>
+<td>
+ {{p}}
+</td>
+<td>
+ {{c}}
+</td>
+</tr>
+{% endfor %}
+</table>
+<p>
+There are {{ ncodes }} different path codes defined.
+{% endblock %}
+