django 1.8.19

This commit is contained in:
Philip Sargent
2020-06-16 22:16:48 +01:00
parent adc43324f3
commit b153fafa9f
7 changed files with 602 additions and 33 deletions

View File

@@ -126,10 +126,10 @@ class SurvexBlock(models.Model):
survexscansfolder = models.ForeignKey("SurvexScansFolder", null=True)
#refscandir = models.CharField(max_length=100)
legsall = models.IntegerField(null=True) # summary data for this block
legssplay = models.IntegerField(null=True) # summary data for this block
legssurfc = models.IntegerField(null=True) # summary data for this block
totalleglength = models.FloatField(null=True)
legsall = models.IntegerField() # summary data for this block
legssplay = models.IntegerField() # summary data for this block
legssurfc = models.IntegerField() # summary data for this block
totalleglength = models.FloatField()
class Meta:
ordering = ('id',)