Skip to content
Snippets Groups Projects
Commit e2aea75f authored by Felix Sun's avatar Felix Sun
Browse files

Fixed a bug in recording hints shown.

Removed the answer display next to voting.  (This was deemed distracting.)
parent d9517ea1
No related merge requests found
......@@ -227,7 +227,7 @@ class CrowdsourceHinterModule(CrowdsourceHinterFields, XModule):
if not rand_hint in hints:
go_on = True
hints.append(rand_hint)
self.previous_answers += [[hint_index, [hint_answer]]]
self.previous_answers += [[hint_answer, [hint_index]]]
return {'hints': hints,
'answer': answer}
......@@ -281,7 +281,6 @@ class CrowdsourceHinterModule(CrowdsourceHinterFields, XModule):
except KeyError:
# Sometimes, the hint that a user saw will have been deleted by the instructor.
continue
return {'answer_to_hints': answer_to_hints,
'user_submissions': self.user_submissions}
......
......@@ -46,7 +46,7 @@
% for hint_pk, hint_text in pk_dict.items():
<p>
<input class="vote" data-answer="${answer}" data-hintno="${hint_pk}" type="button" value="Vote">
${answer}: ${hint_text}
${hint_text}
</p>
% endfor
% endfor
......@@ -71,7 +71,7 @@
<div class = "previous-answer" id="previous-answer-${unspace(answer)}" data-answer="${answer}">
<div class = "hint-inner-container">
<p>
What hint would you give a student who made the same mistake you did? Please don't give away the answer.
What hint would you give a student who also arrived at an answer of ${answer}? Please don't give away the correct answer.
</p>
<textarea cols="50" class="custom-hint" data-answer="${answer}">
What would you say to help someone who got this wrong answer?
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment