diff options
author | Philip Sargent <philip.sargent@gmail.com> | 2023-01-31 17:13:41 +0000 |
---|---|---|
committer | Philip Sargent <philip.sargent@gmail.com> | 2023-01-31 17:13:41 +0000 |
commit | 1f5b56a5931666b1a6627a2ae83d3f846badbaf9 (patch) | |
tree | 021390e2504015431b2e29f93fa5309060bf2aba /core/models | |
parent | 57930b7aa55b8d0f8da5b1b3eb357bda130fe9cc (diff) | |
download | troggle-1f5b56a5931666b1a6627a2ae83d3f846badbaf9.tar.gz troggle-1f5b56a5931666b1a6627a2ae83d3f846badbaf9.tar.bz2 troggle-1f5b56a5931666b1a6627a2ae83d3f846badbaf9.zip |
Wallet editor into separate file
Diffstat (limited to 'core/models')
-rw-r--r-- | core/models/wallets.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/models/wallets.py b/core/models/wallets.py index eb93d10..19eaec5 100644 --- a/core/models/wallets.py +++ b/core/models/wallets.py @@ -40,7 +40,7 @@ class Wallet(models.Model): fp = Path(self.fpath) wname = fp.name wyear = fp.parent.name - wurl = f"/scanupload/{self.walletname}" # .replace('#', ':') + wurl = f"/walletedit/{self.walletname}" # .replace('#', ':') jsonfile = Path(settings.DRAWINGS_DATA, "walletjson") / wyear / wname / "contents.json" if not Path(jsonfile).is_file(): |