diff options
author | Rad <radost.waszkiewicz@gmail.com> | 2019-02-28 18:46:40 +0000 |
---|---|---|
committer | Rad <radost.waszkiewicz@gmail.com> | 2019-02-28 18:46:40 +0000 |
commit | 9a7a1728a44168e3d113edfa500893474343ec80 (patch) | |
tree | 91d65f02c9fc2356be2be52b70d71d7f2003263e /core/models_millenial.py | |
parent | 240c7eff100cbcfa5e4d777fe4f823a777b7d4a4 (diff) | |
download | troggle-RW_rebuild.tar.gz troggle-RW_rebuild.tar.bz2 troggle-RW_rebuild.zip |
working maps: cave -> desc, survey -> cave, expedition -> person. Added /millnialpeople/ page.RW_rebuild
Diffstat (limited to 'core/models_millenial.py')
-rw-r--r-- | core/models_millenial.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/models_millenial.py b/core/models_millenial.py index c97be36..1534961 100644 --- a/core/models_millenial.py +++ b/core/models_millenial.py @@ -70,8 +70,8 @@ class ExpeditionM(models.Model): #instance of this class corresponds to one expo class SurveyM(models.Model): #instance of this class corresponds to one .svx file - one trip date = models.CharField(max_length=100) #date of the trip in format YYYY.MM.DD (dated:=date given by .svx file) - maxdepth = models.FloatField() #represents max depth of a node in this survey - + survex_file = models.TextField() + class Logbook_entryM(models.Model): #instance of this class corresponds to one bit of logbook (c.f. expo.survex.com/years/2015/logbook.html or simil) date = models.CharField(max_length=100) #date as typed into logbook contents = models.TextField() #contents of the logbook chunk |