diff options
author | Philip Sargent <philip.sargent@gmail.com> | 2023-03-06 04:52:41 +0000 |
---|---|---|
committer | Philip Sargent <philip.sargent@gmail.com> | 2023-03-06 04:52:41 +0000 |
commit | ccfc44a4234e3fb6b590d79fa76f7e03b6d5dca0 (patch) | |
tree | 3bb46dec172b5127d899a0fc67d3e890b5fb68a8 /core/models/survex.py | |
parent | 8f3b3295527ac76c20e11cf29a94895a4c7d6a17 (diff) | |
download | troggle-ccfc44a4234e3fb6b590d79fa76f7e03b6d5dca0.tar.gz troggle-ccfc44a4234e3fb6b590d79fa76f7e03b6d5dca0.tar.bz2 troggle-ccfc44a4234e3fb6b590d79fa76f7e03b6d5dca0.zip |
Saving new survex file parses contents.
Diffstat (limited to 'core/models/survex.py')
-rw-r--r-- | core/models/survex.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/core/models/survex.py b/core/models/survex.py index c6d6af1..c1d8ca2 100644 --- a/core/models/survex.py +++ b/core/models/survex.py @@ -116,7 +116,9 @@ class SurvexBlockLookUpManager(models.Manager): class SurvexBlock(models.Model): - """One begin..end block within a survex file. The basic element of a survey trip.""" + """One begin..end block within a survex file. The basic element of a survey trip. + Multiple anonymous survex blocks are possible within the same surfex file + """ objects = SurvexBlockLookUpManager() name = models.CharField(max_length=100) |