Made JSON visible on wallet edit page

This commit is contained in:
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}')
if not Path(jsonfile).is_file():
metadataurl = ""
metadata =""
else:
metadataurl = Path("/dwgdataraw", "walletjson") / wallet[0:4] / wallet.replace("#", ":") / "contents.json"
with open(jsonfile, 'r') as f:
metadata = f.read()
psg = ""
freetext = ""
chkplannr = ""
@@ -826,6 +829,7 @@ def walletedit(request, path=None):
"svxothers": svxothers,
"create": create,
"metadataurl": metadataurl,
"metadata": metadata,
"complaints": complaints,
"caveobject": caveobject,
"people": waldata["people"],