diff options
Diffstat (limited to 'templates/survexreport.html')
-rw-r--r-- | templates/survexreport.html | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/templates/survexreport.html b/templates/survexreport.html new file mode 100644 index 0000000..aec0435 --- /dev/null +++ b/templates/survexreport.html @@ -0,0 +1,28 @@ +{% extends "base.html" %} +{% block title %}Data import report{% endblock %} + +{% block content %} +<h1>Expo Survex import report</h1> + + +<h3>*include and begin/end import</h3> +<p>The number at the left-hand margin is the depth of the *include nesting. The indented number to the left of the *begin or *end line shows the depth of the begin/end survex block nesting. *title lines are indnted further to make them more easily visible. +<p>An extra line *edulcni is inserted to show where an included file ends. The *include and *edulcni lines omit the ".svx" from the end of the filename. +<p>The survex files which are NOT part of the main include tree have been collected together and included under a constructed file "_unseens" following the line "0 *include _unseens" into a begin/end block labelled "troggle_unseens". +<hr> +<p>Go to <a href="/controlpanel">Control panel</a> - for other import reports +<hr> +<p style="font-family: Consolas, Lucida Console, monospace;"> +{% for line in log %} +{{line|safe}}<br /> +{% empty %} +<b>No import report file found. Re-import using databaseReset.py</b> +{% endfor %} + +<p>This report is generated from <code>templates/survexreport.html</code> and +by <code>survexreport(request)</code> in <code>core/views/statistics.py </code> +<hr> +<p>Go to <a href="/controlpanel">Control panel</a> - for other import reports +<p>Go to <a href="/handbook/troggle/trogmanual.html">Troggle maintenance manuals</a> +{% endblock %} + |