2
0
mirror of https://expo.survex.com/repositories/troggle/.git synced 2025-04-03 09:21:48 +01:00

Made JSON visible on wallet edit page

This commit is contained in:
Philip Sargent 2023-02-03 11:34:38 +00:00
parent 7f5bd2c17e
commit e70d51e52b
2 changed files with 18 additions and 4 deletions

View File

@ -632,8 +632,11 @@ def walletedit(request, path=None):
# print(f'! - FORM walletedit - jsonfile {jsonfile}') # print(f'! - FORM walletedit - jsonfile {jsonfile}')
if not Path(jsonfile).is_file(): if not Path(jsonfile).is_file():
metadataurl = "" metadataurl = ""
metadata =""
else: else:
metadataurl = Path("/dwgdataraw", "walletjson") / wallet[0:4] / wallet.replace("#", ":") / "contents.json" metadataurl = Path("/dwgdataraw", "walletjson") / wallet[0:4] / wallet.replace("#", ":") / "contents.json"
with open(jsonfile, 'r') as f:
metadata = f.read()
psg = "" psg = ""
freetext = "" freetext = ""
chkplannr = "" chkplannr = ""
@ -826,6 +829,7 @@ def walletedit(request, path=None):
"svxothers": svxothers, "svxothers": svxothers,
"create": create, "create": create,
"metadataurl": metadataurl, "metadataurl": metadataurl,
"metadata": metadata,
"complaints": complaints, "complaints": complaints,
"caveobject": caveobject, "caveobject": caveobject,
"people": waldata["people"], "people": waldata["people"],

View File

@ -253,10 +253,20 @@
{% else %} {% else %}
<em>No other survex files found for this date.</em><br> <em>No other survex files found for this date.</em><br>
{% endif %} {% endif %}
{% if metadataurl %}<u>Debug</u>:
<span style="font-size: 70%; "> {% if metadataurl %}<span style="font-size: 70%; "><details><summary>
<a href="{{metadataurl}}">json file</a><br> {% endif %} JSON <br>
</span> </summary>
<a href="{{metadataurl}}">{{metadataurl}}</a><br>
<pre>
{{metadata}}
</pre>
</span> </span>
</details>
{% else %}<span style="font-size: 70%; ">
<em>No JSON file yet.</em><br>
</span>
{% endif %}
{% endif %} <!-- not create --> {% endif %} <!-- not create -->
</span>
{% endblock %} {% endblock %}