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"
POSITION_CHOICES = (
("0", "None"),
("o", "Tuck"),
("c", "Puck"),
("<", "Pike"),
("0", "none"),
("o", "tuck"),
("c", "puck"),
("<", "pike"),
# ("L", "Half pike"),
("/", "Straight"),
("//", "Straddle"),
("/", "straight"),
("//", "straddle"),
)
ROTATION_CHOICES = (
(0, "None"),
(1, "Frontward"),
(2, "Backward"),
(0, "none"),
(1, "frontward"),
(2, "backward"),
)
position = models.CharField(max_length=2, choices=POSITION_CHOICES)