mirror of
https://expo.survex.com/repositories/troggle/.git
synced 2024-11-22 15:21:52 +00:00
52 lines
734 B
HTML
52 lines
734 B
HTML
{% 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><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>Path</th><th>Code</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.
|
|
{% endblock %}
|
|
|