diff options
Diffstat (limited to 'templates')
-rw-r--r-- | templates/scanuploadform.html | 25 |
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><No JSON data here> +{% endfor %} +</table> +</span> {% endblock %} |