2
0
mirror of https://expo.survex.com/repositories/troggle/.git synced 2024-11-22 07:11:52 +00:00
troggle/templates/therionreport.html

21 lines
664 B
HTML
Raw Permalink Normal View History

2023-01-26 22:36:49 +00:00
{% extends "base.html" %}
{% block title %}Troggle paths report{% endblock %}
{% block content %}
<h1>Expo Therion import issues report</h1>
2023-01-26 23:36:56 +00:00
<h3>! Un-parsed image filename</h3>
2023-01-26 22:36:49 +00:00
<p style="font-family: Consolas, Lucida Console, monospace;">
2023-01-26 23:36:56 +00:00
{% for line in therionlog %}
{{line}}<br />
2023-01-26 22:36:49 +00:00
{% empty %}
<b>No Therion parsing output found. Re-import all drawings using databaseReset.py</b>
{% endfor %}
<p>This report is generated from <code>templates/therionreport.html</code> and
by <code>therionreport(request)</code> in <code>core/views/statistics.py </code>
<hr>
<p>Go to <a href="/handbook/troggle/trogmanual.html">Troggle maintenance manuals</a>
{% endblock %}