X-Git-Url: https://code.kerkeslager.com/?p=climbing.kerkeslager.com;a=blobdiff_plain;f=src%2Fclimbing%2Fmodels.py;fp=src%2Fclimbing%2Fmodels.py;h=0f17d7a4f305ab3fd54a3065c38152722a57b235;hp=71a836239075aa6e6e4ecb700e9c42c95c022d91;hb=1bc6954655e77c96abc15240b495331dfb0dd1a8;hpb=a61e6c6f81f4b3b226cdc232272f2cea3a129c2a diff --git a/src/climbing/models.py b/src/climbing/models.py index 71a8362..0f17d7a 100644 --- a/src/climbing/models.py +++ b/src/climbing/models.py @@ -1,3 +1,110 @@ from django.db import models -# Create your models here. +class Area(models.Model): + name = models.CharField(max_length=64) + notes = models.TextField() + +class Crag(models.Model): + area = models.ForeignKey(Area, on_delete=models.CASCADE) + name = models.CharField(max_length=64) + notes = models.TextField() + +class Route(models.Model): + area = models.ForeignKey(Crag, on_delete=models.CASCADE) + name = models.CharField(max_length=64) + notes = models.TextField() + +ROUTE_DIFFICULTY_CHOICES = ( + ('5.0', '5.0'), + ('5.1', '5.1'), + ('5.2', '5.2'), + ('5.3', '5.3'), + ('5.4', '5.4'), + ('5.5', '5.5'), + ('5.6', '5.6'), + ('5.6+', '5.6+'), + ('5.7', '5.7'), + ('5.7+', '5.7+'), + ('5.8', '5.8'), + ('5.8+', '5.8+'), + ('5.9-', '5.9-'), + ('5.9', '5.9'), + ('5.9+', '5.9+'), + ('5.10a', '5.10a'), + ('5.10b', '5.10b'), + ('5.10c', '5.10c'), + ('5.10d', '5.10d'), + ('5.11a', '5.11a'), + ('5.11b', '5.11b'), + ('5.11c', '5.11c'), + ('5.11d', '5.11d'), + ('5.12a', '5.12a'), + ('5.12b', '5.12b'), + ('5.12c', '5.12c'), + ('5.12d', '5.12d'), + ('5.13a', '5.13a'), + ('5.13b', '5.13b'), + ('5.13c', '5.13c'), + ('5.13d', '5.13d'), + ('5.14a', '5.14a'), + ('5.14b', '5.14b'), + ('5.14c', '5.14c'), + ('5.14d', '5.14d'), + ('5.15a', '5.15a'), + ('5.15b', '5.15b'), + ('5.15c', '5.15c'), + ('5.15d', '5.15d'), +) + +SAFETY_CHOICES = ( + ('G', 'G'), + ('PG', 'PG'), + ('PG13', 'PG13'), + ('R', 'R'), + ('X', 'X'), +) + +class Pitch(models.Model): + route = models.ForeignKey(Route, on_delete=models.CASCADE) + name = models.CharField(max_length=64, null=True) + difficulty = models.CharField(max_length=5, choices=ROUTE_DIFFICULTY_CHOICES) + safety = models.CharField(max_length=4, choices=SAFETY_CHOICES) + notes = models.TextField() + +class Cluster(models.Model): + area = models.ForeignKey(Area, on_delete=models.CASCADE) + name = models.CharField(max_length=64) + notes = models.TextField() + +class Boulder(models.Model): + cluster = models.ForeignKey(Cluster, on_delete=models.CASCADE) + name = models.CharField(max_length=64) + notes = models.TextField() + +BOULDER_DIFFICULTY_CHOICES = ( + ('V0', 'V0'), + ('V1', 'V1'), + ('V2', 'V2'), + ('V3', 'V3'), + ('V4', 'V4'), + ('V5', 'V5'), + ('V6', 'V6'), + ('V7', 'V7'), + ('V8', 'V8'), + ('V9', 'V9'), + ('V10', 'V10'), + ('V11', 'V11'), + ('V12', 'V12'), + ('V13', 'V13'), + ('V14', 'V14'), + ('V15', 'V15'), + ('V16', 'V16'), + ('V17', 'V17'), +) + +class Problem(models.Model): + boulder = models.ForeignKey(Boulder, on_delete=models.CASCADE) + name = models.CharField(max_length=64) + difficulty = models.CharField(max_length=3, choices=BOULDER_DIFFICULTY_CHOICES) + safety = models.CharField(max_length=4, choices=SAFETY_CHOICES) + notes = models.TextField()