diff options
author | Philip Sargent <philip.sargent@klebos.com> | 2022-07-28 02:37:44 +0300 |
---|---|---|
committer | Philip Sargent <philip.sargent@klebos.com> | 2022-07-28 02:37:44 +0300 |
commit | 9a461c31a882b544b3707e308f6c65ad29784625 (patch) | |
tree | 18bbccae24e3bdfbf36980a9634dccbb545054f6 /core/models/survex.py | |
parent | fea69c03717d700192d7a5a5afc4c27a654a923f (diff) | |
download | troggle-9a461c31a882b544b3707e308f6c65ad29784625.tar.gz troggle-9a461c31a882b544b3707e308f6c65ad29784625.tar.bz2 troggle-9a461c31a882b544b3707e308f6c65ad29784625.zip |
adding people
Diffstat (limited to 'core/models/survex.py')
-rw-r--r-- | core/models/survex.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/core/models/survex.py b/core/models/survex.py index 9746afb..29241f9 100644 --- a/core/models/survex.py +++ b/core/models/survex.py @@ -195,6 +195,10 @@ class Wallet(models.Model): jsondata = self.get_json() return jsondata["date"] + def people(self): + jsondata = self.get_json() + return jsondata["people"] + def name(self): jsondata = self.get_json() return jsondata["name"] |