summaryrefslogtreecommitdiffstats
path: root/templates/scanuploadform.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/scanuploadform.html')
-rw-r--r--templates/scanuploadform.html25
1 files changed, 25 insertions, 0 deletions
diff --git a/templates/scanuploadform.html b/templates/scanuploadform.html
index 39d3220..095fad9 100644
--- a/templates/scanuploadform.html
+++ b/templates/scanuploadform.html
@@ -57,4 +57,29 @@
</div>
<hr />
+<br>
+<span style="font-family: monospace; font-size: 150%; ">
+{% if cave %}<u>Cave ID</u>: <b>{{cave}}</b><br> {% endif %}
+{% if psg %}<u>Survey area</u>: <b>{{psg}}</b><br><br> {% endif %}
+</span>
+<span style="font-family: monospace; font-size: 130%; ">
+<table style="border: 1px; border-style: hidden;>
+{% for d, value in waldata.items %}
+<tr style="border-style: hidden;">
+ <td style="border-style: hidden; padding-right: 3em;">{{d}}</td>
+ {% if d == "survex file" %}
+ <td>
+ {% for svx in value %}
+ <a href="/survexfile/{{svx}}">{{svx}}</a>
+ {% endfor %}
+ </td>
+ {% else %}
+ <td> <b>{{value}}</b></td>
+ {% endif %}
+</tr>
+{% empty %}
+ <p>&lt;No JSON data here&gt;
+{% endfor %}
+</table>
+</span>
{% endblock %}