Update Objective model for skill details description
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Gregory Trullemans 2022-01-08 20:54:00 +01:00
parent 128ace335d
commit 2d1a8511b0
1 changed files with 9 additions and 9 deletions

View File

@ -127,19 +127,19 @@ class Skill(Educative):
verbose_name_plural = "Skills" verbose_name_plural = "Skills"
POSITION_CHOICES = ( POSITION_CHOICES = (
("0", "None"), ("0", "none"),
("o", "Tuck"), ("o", "tuck"),
("c", "Puck"), ("c", "puck"),
("<", "Pike"), ("<", "pike"),
# ("L", "Half pike"), # ("L", "Half pike"),
("/", "Straight"), ("/", "straight"),
("//", "Straddle"), ("//", "straddle"),
) )
ROTATION_CHOICES = ( ROTATION_CHOICES = (
(0, "None"), (0, "none"),
(1, "Frontward"), (1, "frontward"),
(2, "Backward"), (2, "backward"),
) )
position = models.CharField(max_length=2, choices=POSITION_CHOICES) position = models.CharField(max_length=2, choices=POSITION_CHOICES)