-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
72 additions
and
49 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,38 +1,34 @@ | ||
class RecommendationChoiceType: | ||
SATISFIED = "SATISFIED" | ||
|
||
choices = [ | ||
(SATISFIED, "SATISFIED"), | ||
] | ||
|
||
|
||
class HelpfulGuidanceChoiceType: | ||
STRONGLY_DISAGREE = "STRONGLY DISAGREE" | ||
DISAGREE = "DISAGREE" | ||
NEITHER_AGREE_NOR_DISAGREE = "NEITHER AGREE NOR DISAGREE" | ||
AGREE = "AGREE" | ||
STRONGLY_AGREE = "STRONGLY AGREE" | ||
|
||
choices = [ | ||
(STRONGLY_DISAGREE, "STRONGLY DISAGREE"), | ||
(DISAGREE, "DISAGREE"), | ||
(NEITHER_AGREE_NOR_DISAGREE, "NEITHER AGREE NOR DISAGREE"), | ||
(AGREE, "AGREE"), | ||
(STRONGLY_AGREE, "STRONGLY AGREE"), | ||
] | ||
|
||
|
||
class UserAccountChoiceType: | ||
VERY_DIFFICULT = "VERY DIFFICULT" | ||
DIFFICULT = "DIFFICULT" | ||
NEITHER_DIFFICULT_NOR_EASY = "NEITHER DIFFICULT NOR EASY" | ||
EASY = "EASY" | ||
VERY_EASY = "VERY EASY" | ||
|
||
choices = [ | ||
(VERY_DIFFICULT, "VERY DIFFICULT"), | ||
(DIFFICULT, "DIFFICULT"), | ||
(NEITHER_DIFFICULT_NOR_EASY, "NEITHER DIFFICULT NOR EASY"), | ||
(EASY, "EASY"), | ||
(VERY_EASY, "VERY EASY"), | ||
] | ||
from django.db import models | ||
|
||
|
||
class RecommendationChoiceType(models.TextChoices): | ||
VERY_DISSATISFIED = "VERY_DISSATISFIED", "VERY_DISSATISFIED" | ||
DISSATISFIED = "DISSATISFIED", "DISSATISFIED" | ||
NEUTRAL = "NEUTRAL", "NEUTRAL" | ||
SATISFIED = "SATISFIED", "SATISFIED" | ||
VERY_SATISFIED = "VERY_SATISFIED", "VERY_SATISFIED" | ||
|
||
|
||
class SatisfactionRatingEnum(models.TextChoices): | ||
STRONGLY_DISAGREE = "STRONGLY DISAGREE", "STRONGLY DISAGREE" | ||
DISAGREE = "DISAGREE", "DISAGREE" | ||
NEITHER_AGREE_NOR_DISAGREE = "NEITHER AGREE NOR DISAGREE", "NEITHER AGREE NOR DISAGREE" | ||
AGREE = "AGREE", "AGREE" | ||
STRONGLY_AGREE = "STRONGLY AGREE", "STRONGLY AGREE" | ||
|
||
|
||
class UserAccountEnum(models.TextChoices): | ||
VERY_DIFFICULT = "VERY DIFFICULT", "VERY DIFFICULT" | ||
DIFFICULT = "DIFFICULT", "DIFFICULT" | ||
NEITHER_DIFFICULT_NOR_EASY = "NEITHER DIFFICULT NOR EASY", "NEITHER DIFFICULT NOR EASY" | ||
EASY = "EASY", "EASY" | ||
VERY_EASY = "VERY EASY", "VERY EASY" | ||
|
||
|
||
class ExperiencedIssueEnum(models.TextChoices): | ||
NO_ISSUE = "NO_ISSUE", "NO_ISSUE" | ||
UNCLEAR = "UNCLEAR", "UNCLEAR" | ||
NAVIGATION = "NAVIGATION", "NAVIGATION" | ||
FEATURE = "FEATURE", "FEATURE" | ||
SLOW = "SLOW", "SLOW" | ||
OTHER = "OTHER", "OTHER" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters