From 7caf1690c62bd43f9eb3462a89d0631cba7298b0 Mon Sep 17 00:00:00 2001 From: Philip Sargent Date: Tue, 21 Mar 2023 12:56:51 +0000 Subject: fix download .3d file --- core/models/caves.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'core/models/caves.py') diff --git a/core/models/caves.py b/core/models/caves.py index 8b23ceb..0001814 100644 --- a/core/models/caves.py +++ b/core/models/caves.py @@ -94,7 +94,7 @@ class Cave(TroggleModel): length = models.CharField(max_length=100, blank=True, null=True) depth = models.CharField(max_length=100, blank=True, null=True) extent = models.CharField(max_length=100, blank=True, null=True) - survex_file = models.CharField(max_length=100, blank=True, null=True) + survex_file = models.CharField(max_length=100, blank=True, null=True) # should be a foreign key description_file = models.CharField(max_length=200, blank=True, null=True) url = models.CharField(max_length=200, blank=True, null=True) filename = models.CharField(max_length=200) @@ -109,6 +109,8 @@ class Cave(TroggleModel): ordering = ("kataster_code", "unofficial_number") def hassurvey(self): + """This is almost certainly a fossil - needs checking... + """ if not self.underground_centre_line: return "No" if ( -- cgit v1.2.3