We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 194f67b commit 94bac35Copy full SHA for 94bac35
django_app/feedback/choices.py
@@ -4,12 +4,13 @@
4
class RatingChoices(models.IntegerChoices):
5
VERY_SATISFIED = 5, "Very satisfied"
6
SATISFIED = 4, "Satisfied"
7
- NEUTRAL = 3, "Neither satisfied nor dissatisfied"
+ NEUTRAL = 3, "Neutral"
8
DISSATISFIED = 2, "Dissatisfied"
9
VERY_DISSATISFIED = 1, "Very dissatisfied"
10
11
12
class DidYouExperienceAnyIssues(models.TextChoices):
13
+ NO = "no", "I did not experience any issues"
14
NOT_FOUND = "not_found", "I did not find what I was looking for"
15
DIFFICULT = "difficult", "I found it difficult to navigate"
16
LACKS_FEATURES = "lacks_features", "The system lacks the feature I need"
0 commit comments