Skip to content

Commit

Permalink
chore: quality checks
Browse files Browse the repository at this point in the history
  • Loading branch information
Ian2012 committed Nov 20, 2023
1 parent 70016d1 commit 0f0e368
Showing 1 changed file with 11 additions and 6 deletions.
17 changes: 11 additions & 6 deletions feedback/feedback.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,16 @@
# "What did you think?" and "How did you like it?".
DEFAULT_FREEFORM = _("What did you learn from this? What was missing?")
DEFAULT_LIKERT = _("How would you rate this as a learning experience?")
DEFAULT_DEFAULT = _("Think about the material, and try to synthesize key "
"lessons learned, as well as key gaps in our presentation.")
DEFAULT_PLACEHOLDER = _("Take a little bit of time to reflect here. "
"Research shows that a meaningful synthesis will help "
"you better understand and remember material from "
"this course.")
DEFAULT_DEFAULT = _(
"Think about the material, and try to synthesize key "
"lessons learned, as well as key gaps in our presentation."
)
DEFAULT_PLACEHOLDER = _(
"Take a little bit of time to reflect here. "
"Research shows that a meaningful synthesis will help "
"you better understand and remember material from "
"this course."
)
DEFAULT_ICON = "face"
DEFAULT_SCALETEXT = [_("Excellent"), _("Good"), _("Average"), _("Fair"), _("Poor")]

Expand All @@ -41,6 +45,7 @@
'num': "12345",
'midface': [""]*5} # u"😞😐😊😐😞"}


@XBlock.needs('i18n')
class FeedbackXBlock(XBlock):
"""
Expand Down

0 comments on commit 0f0e368

Please sign in to comment.