diff options
Diffstat (limited to 'app/locations/models.py')
-rw-r--r-- | app/locations/models.py | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/app/locations/models.py b/app/locations/models.py index e0409eb..dfd8f27 100644 --- a/app/locations/models.py +++ b/app/locations/models.py @@ -416,6 +416,7 @@ class GPXPoint(models.Model): def __str__(self): return str(self.name) + class GPXTrack(models.Model): track = models.MultiLineStringField() gpx_file = models.ForeignKey(GPXFile, on_delete=models.CASCADE) @@ -464,7 +465,7 @@ def parse_gpx(gpx_obj, gpx_data): new_track.save() -class Walk(models.Model): +class Track(models.Model): title = models.CharField(max_length=300) subtitle = models.CharField(max_length=200, blank=True) slug = models.SlugField() @@ -482,6 +483,11 @@ class Walk(models.Model): ('5', "5 Stars"), ) rating = models.CharField(max_length=1, choices=RATINGS, null=True, blank=True) + PACE = ( + ('1', "Walk"), + ('2', "Run"), + ) + pace = models.CharField(max_length=1, choices=PACE, default=2) distance = models.DecimalField(max_digits=3, decimal_places=2, null=True) duration = models.DecimalField(max_digits=3, decimal_places=0, null=True, help_text="in minutes") |