Skip to content

Commit 94bac35

Browse files
committed
reverting changes in choices.py
1 parent 194f67b commit 94bac35

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

django_app/feedback/choices.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,13 @@
44
class RatingChoices(models.IntegerChoices):
55
VERY_SATISFIED = 5, "Very satisfied"
66
SATISFIED = 4, "Satisfied"
7-
NEUTRAL = 3, "Neither satisfied nor dissatisfied"
7+
NEUTRAL = 3, "Neutral"
88
DISSATISFIED = 2, "Dissatisfied"
99
VERY_DISSATISFIED = 1, "Very dissatisfied"
1010

1111

1212
class DidYouExperienceAnyIssues(models.TextChoices):
13+
NO = "no", "I did not experience any issues"
1314
NOT_FOUND = "not_found", "I did not find what I was looking for"
1415
DIFFICULT = "difficult", "I found it difficult to navigate"
1516
LACKS_FEATURES = "lacks_features", "The system lacks the feature I need"

0 commit comments

Comments
 (0)